tokyo-opendata-mcp
Enables deployment of the MCP server as a Cloudflare Workers endpoint for remote access.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@tokyo-opendata-mcpsearch for evacuation center datasets"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
tokyo-opendata-mcp
東京都オープンデータを AI が正しく扱えるようにする MCP サーバー。
単なる API プロキシではない。実データを調査して判明した「AI が誤解する罠」を、 ツールの応答に組み込んで返す。
なぜ必要か
東京都は 9,642 データセット・71,451 の API を公開しているが、AI から見ると 3 つの壁がある。
壁 | 実測 | このMCPの対応 |
検索が同義語を吸収しない | 「避難」で 96 件、「避難所」で 937 件(広い語ほど少ない逆転) | 表記ゆれを自動展開して並列に横断検索し統合 |
更新日が信用できない |
| 鮮度の誤認を警告し、本文から実際の基準日を抽出 |
API化=クレンジングではない | 元CSVの空行がそのまま返る(先頭ページが空行のAPIも実在する) | 空行をスキップして要求件数まで読み進め、正確な |
Related MCP server: e-Stat MCP server
ツール
ツール | 説明 |
| 日常語で検索。行政用語への表記ゆれを自動展開 |
| 提供元・メンテナー・更新頻度・鮮度の警告 |
| 実データの行を取得(空行スキップ+安全なページ送り) |
| 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 buildClaude 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 | ロジック(同義語展開・空行スキップ・鮮度警告・リトライ) |
| 不要 |
2 | MCPプロトコル(ツール公開・zodバリデーション・isError) |
| 不要 |
3 | Remoteトランスポート( |
| 不要 |
4 | 実データE2E(都のAPIに対する assert 付き検証) |
| 必要 |
検証している主な罠:
空行がページ境界をまたいでも要求件数まで読み進める/全ページ空行でも
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 に従う。 出典表示が必要である — 出典:東京都オープンデータカタログサイト
本リポジトリは東京都とは無関係の第三者による非公式なものである。
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceAn MCP server that provides tools for intelligently querying, analyzing, and retrieving datasets from Toronto's CKAN-powered open data portal. It enables AI assistants to perform natural language searches, inspect data structures, and track dataset update frequencies across the city's open data catalog.11
- AlicenseBqualityFmaintenanceMCP server for accessing Japanese government statistics portal 'e-Stat' API, enabling language models to search and retrieve statistical data.520MIT
- Alicense-qualityDmaintenanceMCP server for the MLIT Data Platform that enables natural language search and retrieval of Japanese government infrastructure and transport data.168MIT
- Flicense-qualityBmaintenanceAn MCP server that enables AI clients to search open data from Nerima City, Tokyo, including public facilities, AED locations, shelters, and parks.1
Related MCP Connectors
MCP server for AI dialogue using various LLM models via AceDataCloud
MCP server giving Claude AI access to 22+ NYC public-record databases for real estate due diligence
This MCP server provides seamless access to Malaysia's government open data, including datasets, w…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bitpackman/tokyo-opendata-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server