ビジネスインテリジェンス MCP

NACEMCPサーバー

NACEは、欧州連合の経済活動の分類であり、公的統計およびベンチマークを目的とした21のトップレベルセクションに整理されています。サプライヤーマッピング、産業比較、規制報告、欧州市場調査に役立ちます。

MCP バージョン: 1.0.0 3 MCPツール 認証
NACE

ベース URL

https://mcp.pressmonitor.com/

認証

MCP呼び出しは、JSON-RPC 2.0リクエストを介してBearerトークンを使用します。

Authorization: Bearer YOUR_TOKEN

ツールを探す

MCPサーバーによって公開されているツールのリストを作成します。

curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
tool news_headlines

ニュース見出しを取得する

ニュース見出しを取得する

引数

名前 タイプ 必須 説明
code string はい エンティティコード(例:ティッカーシンボル、業界コード)
lang_code string いいえ 言語コードでフィルター(ISO 639-1)
country_code string いいえ 国コードでフィルター(ISO 3166-1 alpha-2)
count string いいえ 返す結果の数
cursor string いいえ ページネーションカーソル(search_afterの代替)

コード例

curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news_headlines","arguments":{"code":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}'
tool news_briefs

ニュース概要を取得する

ニュース概要を取得する

引数

名前 タイプ 必須 説明
code string はい エンティティコード(例:ティッカーシンボル、業界コード)
lang_code string いいえ 言語コードでフィルター(ISO 639-1)
country_code string いいえ 国コードでフィルター(ISO 3166-1 alpha-2)
count string いいえ 返す結果の数
cursor string いいえ ページネーションカーソル(search_afterの代替)

コード例

curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news_briefs","arguments":{"code":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}'
tool news_fulltext

全文ニュースを取得する

全文ニュースを取得する

引数

名前 タイプ 必須 説明
code string はい エンティティコード(例:ティッカーシンボル、業界コード)
lang_code string いいえ 言語コードでフィルター(ISO 639-1)
country_code string いいえ 国コードでフィルター(ISO 3166-1 alpha-2)
count string いいえ 返す結果の数
cursor string いいえ ページネーションカーソル(search_afterの代替)

コード例

curl -X POST \ 'https://mcp.pressmonitor.com/' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news_fulltext","arguments":{"code":"SOME_STRING_VALUE","lang_code":"SOME_STRING_VALUE","country_code":"SOME_STRING_VALUE","count":20,"cursor":"NEXT_CURSOR"}}}'