About
東京都オープンデータをAIが正しく扱えるようにするMCPサーバー(検索の表記ゆれ吸収・鮮度の罠を警告)
README
東京都オープンデータを AI が正しく扱えるようにする MCP サーバー。
単なる API プロキシではない。実データを調査して判明した「AI が誤解する罠」を、 ツールの応答に組み込んで返す。
なぜ必要か
東京都は 9,642 データセット・71,451 の API を公開しているが、AI から見ると 3 つの壁がある。
| 壁 | 実測 | このMCPの対応 |
|---|---|---|
| 検索が同義語を吸収しない | 「避難」で 96 件、「避難所」で 937 件(広い語ほど少ない逆転) | 表記ゆれを自動展開して並列に横断検索し統合 |
| 更新日が信用できない | metadata_modified=2025-12-12 が 9,642 件中 7,118 件(カタログ一括移行日) |
鮮度の誤認を警告し、本文から実際の基準日を抽出 |
| API化=クレンジングではない | 元CSVの空行がそのまま返る(先頭ページが空行のAPIも実在する) | 空行をスキップして要求件数まで読み進め、正確な next_offset を返す |
ツール
| ツール | 説明 |
|---|---|
search_datasets |
日常語で検索。行政用語への表記ゆれを自動展開 |
get_dataset |
提供元・メンテナー・更新頻度・鮮度の警告 |
query_dataset_api |
実データの行を取得(空行スキップ+安全なページ送り) |
list_dataset_resources |
CSV/Excel リソース一覧 |
実際の応答例
$ get_dataset("t000003d0000000093")
title: 東京都防災マップ 避難所・避難場所一覧データ
maintainer: 東京都総務局総合防災部防災計画課 | 更新頻度: 不定期
metadata_modified: 2025-12-12T10:04:13
⚠️ warnings:
- metadata_modified が 2025-12-12 ですが、これはカタログ全体の一括移行日です
(全9,642件中7,118件が同日)。実データの鮮度ではありません。
- 本文に基準日の記載があります:「令和3年4月1日基準」。これが実際のデータ基準日です。
更新日だけを見た AI は「2025年の最新データ」と誤認する。このMCPは2021年基準であることを伝える。
使い方
ローカル(stdio)
npm install && npm run build
Claude Code / Claude Desktop の設定に追加する:
{
"mcpServers": {
"tokyo-opendata": {
"command": "node",
"args": ["/absolute/path/to/tokyo-opendata-mcp/dist/stdio.js"]
}
}
}
リモート(Cloudflare Workers)
同じツール定義を Streamable HTTP で公開できる。
npx wrangler deploy
エンドポイントは https://<your-worker>.workers.dev/mcp(ヘルスチェックは /health)。
テスト
4層構成。層1〜3は fetch モックと InMemoryTransport によりネットワーク不要で、追加依存もない(node:test 標準ランナー)。
| 層 | 対象 | コマンド | ネットワーク |
|---|---|---|---|
| 1 | ロジック(同義語展開・空行スキップ・鮮度警告・リトライ) | npm test |
不要 |
| 2 | MCPプロトコル(ツール公開・zodバリデーション・isError) | npm test |
不要 |
| 3 | Remoteトランスポート(worker.fetch をインプロセス直呼び) |
npm test |
不要 |
| 4 | 実データE2E(都のAPIに対する assert 付き検証) | npm run test:live |
必要 |
検証している主な罠:
- 空行がページ境界をまたいでも要求件数まで読み進める/全ページ空行でも
MAX_PAGESで必ず停止する next_offsetによるページ送りで行の重複・読み飛ばしが起きない- 5xx は1回だけリトライし、4xx はリトライしない
- 検索変種の一部失敗は握りつぶさず note で通知される
- バリデーション違反(
-32602)はツールハンドラ実行前に拒否される
構成
src/
tokyo.ts 東京都APIアクセス層(fetchのみ。Node/Workers 両対応)
tools.ts MCPツール定義(stdio と Remote で共有)
stdio.ts ローカル用エントリ
worker.ts Cloudflare Workers 用エントリ
test/
smoke.mjs 実データに対するE2Eテスト
関連
- 索引データ: tokyo-opendata-api-index — 5,611データセットの項目定義(CC BY 4.0)
- 東京都オープンデータカタログ: https://catalog.data.metro.tokyo.lg.jp/
ライセンス
MIT(コード)。取得されるデータは東京都オープンデータカタログの CC BY 4.0 に従う。 出典表示が必要である — 出典:東京都オープンデータカタログサイト
本リポジトリは東京都とは無関係の第三者による非公式なものである。
Install Tokyo Opendata in Claude Desktop, Claude Code & Cursor
unyly install tokyo-opendataInstalls into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.
First time? Get the CLI: curl -fsSL https://unyly.org/install | sh
Or configure manually
Run in your terminal:
claude mcp add tokyo-opendata -- npx -y github:bitpackman/tokyo-opendata-mcpStep-by-step: how to install Tokyo Opendata
FAQ
Is Tokyo Opendata MCP free?
Yes, Tokyo Opendata MCP is free — one-click install via Unyly at no cost.
Does Tokyo Opendata need an API key?
No, Tokyo Opendata runs without API keys or environment variables.
Is Tokyo Opendata hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Tokyo Opendata in Claude Desktop, Claude Code or Cursor?
Open Tokyo Opendata on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzMCP-Agent
A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)
by lastmile-aiSpring AI MCP Client
Provides auto-configuration for MCP client functionality in Spring Boot applications.
mcp.natoma.ai
A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)
MCPHub
Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.
MCP Servers Rating and User Reviews
Website to rate MCP servers, write authentic user reviews, and [search engine for agent & mcp](http://www.deepnlp.org/search/agent)
mkinf
An Open Source registry of hosted MCP Servers to accelerate AI agent workflows.
Compare Tokyo Opendata with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
