No install? Use cloud.anythingmcp.com directly.
Sign in, install the Nominatim (OpenStreetMap) in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.
TL;DR
Free, no-auth geocoding using OpenStreetMap's Nominatim service. Forward + reverse geocoding + place lookup + search. 4 tools.
💡 インストール不要? cloud.anythingmcp.com を直接利用してください。 サインインし、Connectors → Nominatim (OpenStreetMap) をクリック、認証情報を貼り付け、MCP API キーを発行 — 完了です。Docker も
git cloneもローカルサーバーも不要。
Nominatim (OpenStreetMap) + Gemini
Free, no-auth geocoding using OpenStreetMap's Nominatim service. Forward + reverse geocoding + place lookup + search. 4 tools.
前提条件
完全なセットアップ手順はコネクタ自体に組み込まれています (ストアでコネクタを選択すると表示)。必要な環境変数:
(none — public API)
ステップ 1 — 認証情報を取得
org).
Setup: NO API KEY REQUIRED. Just install the connector. The base URL is https://nominatim.openstreetmap.org.
HOWEVER — usage policy you MUST respect (otherwise you'll get banned):
- Max 1 request per second per IP. The connector does NOT throttle for you — your agent must self-limit. For bulk usage, run a self-hosted Nominatim or use a paid Nominatim host.
- User-Agent header REQUIRED — every request must identify you. The connector pins
User-Agent: AnythingMCP (https://anythingmcp.com)automatically. - No heavy bulk geocoding — if you need >100 requests/hour, switch to MapTiler / OpenCage / Mapbox / Google.
- …
ステップ 2 — アダプターをインストール
git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d
ステップ 3 — Gemini にコネクタを追加
Gemini CLI は ~/.gemini/settings.json (Windows は %APPDATA%\gemini\settings.json) から MCP サーバを読み込みます。追加:
{
"mcpServers": {
"anythingmcp": {
"httpUrl": "https://cloud.anythingmcp.com/mcp",
"headers": { "Authorization": "Bearer YOUR_MCP_API_KEY" }
}
}
}
- AnythingMCP の Profile → MCP API Keys → New Key で MCP API key を取得。
- ファイルを保存し
geminiを再起動。 - Gemini CLI で
/mcpを実行 —Nominatim (OpenStreetMap)が利用可能として表示されます。 - Vertex AI Studio: 同じ Bearer ヘッダーで
https://cloud.anythingmcp.com/mcpをリクエストのtools配列に渡してください。
利用可能なツール
| Tool | What it does |
|---|---|
nominatim_search | Forward geocode (free-text address → coordinates + structured address) |
nominatim_reverse | Reverse geocode (coordinates → address) |
nominatim_lookup | Look up known OSM IDs (N1234, W5678, R9012 for nodes/ways/relations) |
nominatim_status | Service status check |
FAQ
Gemini 1.5 Pro / 2.x は MCP をサポートしますか? はい — Gemini CLI ≥ 0.4 と Vertex AI tools API は Bearer ヘッダー付きの httpUrl MCP コネクタを受け入れます。
次のステップ
このガイドは役に立ちましたか?