Using an AI agent?AIエージェントから使う
Add one MCP URL. No account or API key is required. Three read-only tools are available.MCP URLを1つ追加するだけ。アカウントもAPIキーも不要で、読み取り専用の3ツールを利用できます。
Copy MCP setupMCP設定を見るA read-only REST API and MCP server over COMPAMIR's structured news. Multiple sources are deduplicated into single events, and where sources disagree the event is flagged, in Japanese and English — with source links on every item. AI-generated 5W1H summaries only; no article text. COMPAMIRの構造化ニュースを提供する読み取り専用REST API+MCPサーバー。複数ソースをイベント単位に名寄せし、各社で報道が食い違う点を検知、日本語・英語の両言語で提供。各項目に出典リンク付き。本文は含まず、AI生成の5W1H要約のみ。
Add one MCP URL. No account or API key is required. Three read-only tools are available.MCP URLを1つ追加するだけ。アカウントもAPIキーも不要で、読み取り専用の3ツールを利用できます。
Copy MCP setupMCP設定を見るGenerate a free REST API key, then call JSON endpoints from curl, TypeScript, or your backend.無料REST APIキーを発行し、curl・TypeScript・バックエンドからJSON APIを呼び出せます。
Generate a keyキーを発行Many articles about one story collapse into a single event — not a feed of duplicates.
同一の出来事に関する多数の記事を1イベントに統合。重複の羅列ではありません。
Where sources disagree on numbers, causes or actors, the event is flagged with a plain-language note.
数値・原因・主体で各社報道が食い違う場合、平易な解説付きでフラグします。
Every field is available in both languages. Switch with ?lang=ja or ?lang=en.
全フィールドが日本語・英語の両方で利用可能。?lang=ja / ?lang=en で言語を切替。
https://api.compamir.com/mcp as a Streamable HTTP server. No key is required.https://api.compamir.com/mcp をStreamable HTTPサーバーとして追加します。キーは不要です。search_events, get_event, and list_conflicts only read published event data.search_events・get_event・list_conflictsは公開イベントデータの読み取りだけを行います。“Find up to five Tech events from the last seven days. Summarize them in English and include every source URL returned by COMPAMIR.”「過去7日間のTechイベントを最大5件探し、日本語で要約してください。COMPAMIRが返した出典URLをすべて含めてください。」
“List five recent events where source reports differ. For each event, state what differs without deciding which report is correct, and include the source links.”「出典間で報道が食い違う直近イベントを5件挙げてください。どちらが正しいかは断定せず、相違点と出典リンクを示してください。」
“Open this COMPAMIR event ID in both Japanese and English. Show the event summary, reported differences, and source links in separate sections.”「このCOMPAMIRイベントIDを日本語・英語の両方で取得し、イベント要約・報道の相違点・出典リンクを分けて表示してください。」
# Latest conflict-flagged events curl -H "Authorization: Bearer cmp_live_..." \ "https://api.compamir.com/v1/conflicts?limit=5"
// genre: Politics | Business | Tech | Global const res = await fetch( "https://api.compamir.com/v1/events?genre=Tech&lang=en", { headers: { Authorization: `Bearer ${process.env.COMPAMIR_KEY}` } } ); const { data } = await res.json();
// MCP server (no key required, free). Streamable HTTP: { "mcpServers": { "compamir": { "url": "https://api.compamir.com/mcp" } } } // tools: search_events, get_event, list_conflicts // 全エンドポイントの仕様は /openapi.json
api.compamir.com. The MCP endpoint https://api.compamir.com/mcp is free and unauthenticated.ベースURLは api.compamir.com。MCPエンドポイント https://api.compamir.com/mcp は無料・認証不要です。// GET /v1/conflicts?lang=both — 7社の報道を1イベントに名寄せ、数値の食い違いを検知 { "data": [{ "id": "evt_a1b2c3", "title": { "en": "Automaker announces layoffs", "jp": "自動車大手が人員削減を発表" }, "genre": "Business", "source_count": 7, "sources": [{ "name": "Reuters", "url": "https://…" }, { "name": "Nikkei", "url": "https://…" }], "conflict": { "note": { "en": "Reuters reports 1,200 job cuts; Nikkei reports 800.", "jp": "ロイターは1,200人、日経は800人と報道。" } }, "compamir_url": "https://compamir.com/en/fact/evt_a1b2c3" }], "meta": { "next_cursor": "…", "remaining_quota": 98 } }
Paste a key to check remaining quota, rotate (replace), or revoke it. No account needed — the key authenticates itself.キーを貼り付けて、残りクォータの確認・ローテーション(差し替え)・失効ができます。アカウント不要(キー自身で認証)。
GET /v1/events — search events. Params: genre, region, status, since, until, q, sort, limit(≤50), cursor, lang.イベント検索。パラメータ: genre, region, status, since, until, q, sort, limit(≤50), cursor, lang。GET /v1/events/{id} · GET /v1/conflicts · GET /v1/metaPOST /v1/keys/rotate · POST /v1/keys/revoke — manage your key (auth with the key; no quota used).キー管理(キーで認証・クォータ消費なし)。GET|POST /mcp — MCP server, free & no key.MCPサーバー・無料・キー不要。Authorization: Bearer cmp_live_…. Errors: {"error":{"code","message"}}. Quota: 100/day (free); 429 with Retry-After when exceeded; meta.remaining_quota on each response.認証: Authorization: Bearer cmp_live_…。エラー形式: {"error":{"code","message"}}。クォータ: 無料1日100回・超過で 429(Retry-After 付)・各応答に meta.remaining_quota。OpenAPI 3.1 (/openapi.json) · MCP Registry · API TermsAPI利用規約