MCP

オンラインニュースMCPサーバー

オンラインニュースは、デジタルネイティブメディアや新聞、放送局、通信社、ウェブ上の雑誌による報道を含み、評判、市場動向、政策開発、迅速な公共情報に重要です。

MCP バージョン: 1.0.0 3 MCPツール 認証
オンラインニュース

ベース URL

https://mcp.pressmonitor.com/mcp

認証

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

Authorization: Bearer YOUR_TOKEN

headlines

見出しツール

引数

名前 タイプ 必須 説明
keywords_text string はい キーワードテキスト
lang_code string いいえ 言語コード
country_code string いいえ 国コード
count integer いいえ 件数
cursor string いいえ カーソル
date_from string いいえ Start date for news (YYYY-MM-DD format)
date_to string いいえ End date for news (YYYY-MM-DD format)
sort string いいえ latest|relevance(default)

コード例

curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "headlines",
    "arguments": {
      "keywords_text": "VALUE"
    }
  },
  "id": 1
}'

briefs

ブリーフィングツール

引数

名前 タイプ 必須 説明
keywords_text string はい キーワードテキスト
lang_code string いいえ 言語コード
country_code string いいえ 国コード
count integer いいえ 件数
cursor string いいえ カーソル
date_from string いいえ Start date for news (YYYY-MM-DD format)
date_to string いいえ End date for news (YYYY-MM-DD format)
sort string いいえ latest|relevance(default)

コード例

curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "briefs",
    "arguments": {
      "keywords_text": "VALUE"
    }
  },
  "id": 1
}'

fulltext

全文検索ツール

引数

名前 タイプ 必須 説明
keywords_text string はい キーワードテキスト
lang_code string いいえ 言語コード
country_code string いいえ 国コード
count integer いいえ 件数
cursor string いいえ カーソル
date_from string いいえ Start date for news (YYYY-MM-DD format)
date_to string いいえ End date for news (YYYY-MM-DD format)
sort string いいえ latest|relevance(default)

コード例

curl -X POST "https://mcp.pressmonitor.com/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "fulltext",
    "arguments": {
      "keywords_text": "VALUE"
    }
  },
  "id": 1
}'