マーケットインテリジェンス MCP

日本取引所グループ(JPX)MCPサーバー

東京証券取引所、大阪取引所、東京商品取引所を運営する日本の取引所グループで、現物株式、デリバティブ、清算、マーケットインフラをカバー。

MCP バージョン: 1.0.0 3 MCPツール 認証
日本取引所グループ(JPX)

ベース 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"}}}'