MCP
印刷メディアMCPサーバー
新聞、雑誌、業界出版物、編集結果、プレス報道、印刷ジャーナリズム。
MCP バージョン: 1.0.0 4 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 | いいえ | |
| sort | string | いいえ | Sort order (date or relevance) |
| date_from | string | いいえ | Start date for news (YYYY-MM-DD format) |
| date_to | string | いいえ | End date for news (YYYY-MM-DD format) |
コード例
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 | いいえ | |
| sort | string | いいえ | Sort order (date or relevance) |
| date_from | string | いいえ | Start date for news (YYYY-MM-DD format) |
| date_to | string | いいえ | End date for news (YYYY-MM-DD format) |
コード例
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 | いいえ | |
| sort | string | いいえ | Sort order (date or relevance) |
| date_from | string | いいえ | Start date for news (YYYY-MM-DD format) |
| date_to | string | いいえ | End date for news (YYYY-MM-DD format) |
コード例
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
}' clip
引数
| 名前 | タイプ | 必須 | 説明 |
|---|---|---|---|
| id | string | はい | Clip/article ID to resolve |
| ns | string | いいえ | Namespace prefix for multi-tenant index resolution |
| date | string | はい | Date of the clip (YYYY-MM-DD) |
| host | string | いいえ | Host name for tenant resolution |
| ttl | integer | いいえ | Signed URL time-to-live in seconds |
コード例
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": "clip",
"arguments": {
"id": "VALUE",
"date": "VALUE"
}
},
"id": 1
}'