GeoWire
OfficialGeoWire is a geo-intelligence gateway providing a unified MCP server for location-based operations across multiple map/place data providers.
Search Places (
search_places): Find businesses, POIs, and landmarks by query, optionally filtered by location, radius, country, category, or open-now status.Get Place Details (
get_place): Retrieve full details for a specific place using a provider reference ID (e.g.,google:ChIJ...).Geocode Address (
geocode_address): Convert a street address or place name into geographic coordinates and a normalized address.Reverse Geocode (
reverse_geocode): Convert coordinates into the nearest street address or place name.Get Directions (
get_directions): Get driving, walking, or cycling routes between two or more waypoints, including distance, travel time, and per-leg breakdown — no API key required (OSRM/OpenStreetMap).Distance Matrix (
distance_matrix): Compute an N×M matrix of travel distances and times between multiple origins and destinations — no API key needed.Analyze Area (
analyze_area): Perform commercial/market analysis for a given center + radius, returning category density, competition overview, rating landscape, and top places.Get Demographics (
get_demographics): Retrieve US Census demographic data (population, median age, median household income) for a coordinate's area — free Census API key required.Get Isochrone (
get_isochrone): Compute a travel-time reachability polygon (e.g., "15-minute drive catchment") as GeoJSON — no API key required.List Providers (
list_geo_providers): Discover configured geo data providers, their capabilities, enabled state, priority, and attribution requirements.
Key highlights: Works zero-config with no API keys (OpenStreetMap + OSRM as defaults), supports multi-provider merging/deduplication, provider fallback, cost budgets, and routing strategies. Supports 10 providers including Nominatim, OSRM, Google, Yelp, Foursquare, Census, Kakao, Naver, Baidu, and custom CSV data.
Provides access to Foursquare's place data, including ratings, reviews, and category information, for enhanced commercial-area analysis and place search.
Integrates Google Maps data for place search, geocoding, and detailed place information, requiring an API key. Contributes ratings, reviews, hours, and more.
Provides free, no-key-required place search, geocoding, and routing via OpenStreetMap data, including Nominatim and OSRM services.
Adds Yelp's business data, including ratings, reviews, and hours, for enriched place search and market analysis in US/Western regions.
GeoWire
Give any AI agent real-world location intelligence in 5 minutes — no API key required.
One interface for place search, directions, and area/market analysis across every map provider.
GeoWire is an open-source geo intelligence gateway that sits between AI agents and map/place data providers (OpenStreetMap, Google, Yelp, Foursquare, US Census, your own data) and exposes them through a single MCP server, REST API, and SDK. One interface for place search, geocoding, directions & distance matrices, and commercial-area analysis (density, ratings, demographics) — with provider fallback, multi-provider merge + dedup, cost budgets, and a policy engine that enforces each provider's caching/attribution terms.
Published on npm — MCP · REST · CLI · SDK all functional. 10 providers, 8 operations.
Honest by design: OpenStreetMap (the zero-key default) is a great geocoder — strong on place names, addresses, and landmarks — but thin on category words ("coffee", "pharmacy"), ratings, and hours. For US/Western commercial data, add a Google, Yelp, or Foursquare key (BYOK) — GeoWire merges them and tells you which source every field came from. Directions run key-free on OpenStreetMap routing (OSRM); US demographics come from the Census (free key).
Contents: Why · Quickstart · MCP tools · REST · Anatomy of a response · Config · Providers · Recipes & examples · Roadmap · Architecture
Why GeoWire?
Direct integration | Single-provider MCP | GeoWire | |
Unified place schema | ❌ per-provider code | ❌ | ✅ |
Provider fallback on failure | ❌ | ❌ | ✅ |
Multi-provider merge + dedup | ❌ | ❌ | ✅ |
Cost budgets & routing | ❌ | ❌ | ✅ |
Works without any API key | ❌ | depends | ✅ (OSM by default) |
Self-hosted | — | depends | ✅ |
Your own place data as a provider | ❌ | ❌ | ✅ |
Transparent provenance (which source, what cost) | ❌ | ❌ | ✅ (every response) |
Not a Google replacement — it uses Google. The thing no single provider can do: merge your own store data + Google + OSM into one deduped record, with per-field provenance (your name is authoritative, Google adds ratings, OSM adds coordinates). Real run below:
More than search — location intelligence for agents
Once your agent can find places, it can reason about areas. One analyze_area
call turns a point + radius into a commercial-district read — category density,
competition, the rating landscape, and (in the US) demographics:
// "Is this a good block for a new café?" — SF, 1 km radius
{ "center": { "latitude": 37.7749, "longitude": -122.4194 }, "radiusMeters": 1000,
"categories": ["cafe", "restaurant", "bar"] }
// → per-category counts + density/km², avg rating (Google/Yelp), price mix,
// an activity proxy (Yelp review volume), and Census demographics for the tract.Same gateway also does directions & distance matrices and travel-time isochrones — key-free via OSRM — so an agent can rank candidates by drive time and answer catchment questions like "what's within a 15-minute drive of this address?" See Recipes.
Related MCP server: NextBillion.ai MCP Server
Quickstart
1. MCP (Claude Desktop / Cursor) — 30 seconds
Add this to your MCP client config (e.g. Claude Desktop claude_desktop_config.json):
{
"mcpServers": {
"geowire": { "command": "npx", "args": ["-y", "@geowirehq/mcp"] }
}
}Then ask: "Where is the Golden Gate Bridge?", "Find coffee within 2 km of
37.7749, -122.4194 (San Francisco).", or "How do I drive from downtown SF to
Fisherman's Wharf?" Works with zero API keys — OpenStreetMap + OSRM routing
are the defaults. Add "env": { "GOOGLE_MAPS_API_KEY": "..." } (or YELP_API_KEY)
for ratings, reviews, and hours, and "CENSUS_API_KEY" for area demographics.
See more MCP client configs.
2. CLI — one-shot search & server
npx @geowirehq/cli search "Golden Gate Bridge" # terminal search with a results table
npx @geowirehq/cli search "coffee" --near 37.7749,-122.4194 --radius 2000 # near a coordinate
npx @geowirehq/cli reverse 37.8199,-122.4783 # coordinate → nearest place
npx @geowirehq/cli route 37.7749,-122.4194 37.8083,-122.4156 # driving directions (no key, OSRM)
npx @geowirehq/cli get google:ChIJ... # one place by reference (getPlace-capable provider)
npx @geowirehq/cli # start the REST + MCP server (zero-config)
npx @geowirehq/cli init # interactive setup wizard (.env + config)
npx @geowirehq/cli test # check provider connectionsAdd --json to any command for the full response (results + provenance meta).
3. Docker — self-hosted server
docker run -p 4980:4980 geowire/geowire
# then:
curl -X POST http://localhost:4980/v1/places/search \
-H 'content-type: application/json' \
-d '{"query":"coffee","near":{"latitude":37.7749,"longitude":-122.4194},"radiusMeters":2000}'Or with docker compose up (see docker-compose.yml). API docs at /docs.
4. SDK (embedded)
import { createGeoWire } from "@geowirehq/core";
import { createNominatimProvider } from "@geowirehq/provider-nominatim";
const geo = createGeoWire({ providers: [createNominatimProvider()] });
const { results, meta } = await geo.searchPlaces({
query: "coffee",
near: { latitude: 37.7749, longitude: -122.4194 },
radiusMeters: 2000,
});Full embedded-SDK guide: examples/typescript-sdk.md.
MCP tools
Tool | Description |
| Natural-language + coordinate/region place search |
| Details by |
| Address → coordinates (+ normalized address) |
| Coordinates → nearest address |
| Route between waypoints (distance, time, legs) — no key (OSRM) |
| N×M travel distances/times — rank candidates by drive time — no key |
| Commercial-area analysis: category density, competition, rating landscape, demographics |
| Travel-time reachability polygon ("what's within a 15-min drive") — no key (OSRM) |
| Population / age / income for a coordinate's area (US Census, free key) |
| Active providers, capabilities, status (agent self-awareness) |
Every response includes both a human-readable summary and structuredContent
(schema-valid JSON).
REST endpoints
Method | Path | |
POST |
| search |
GET |
| place details ( |
GET |
| geocode |
GET |
| reverse geocode |
POST |
| directions between waypoints (no key) |
POST |
| N×M travel distance/time matrix (no key) |
POST |
| commercial-area analysis (density, competition, ratings, demographics) |
POST |
| travel-time reachability polygon (no key) |
GET |
| area demographics (US Census, free key) |
GET |
| list providers |
GET |
| health check |
GET |
| Prometheus metrics |
GET |
| Swagger UI (OpenAPI 3.1) |
POST |
| MCP over Streamable HTTP |
Optional Bearer auth: set GEOWIRE_API_KEYS=key1,key2.
Anatomy of a response
No black box. Every response carries a meta block: which providers were
used / skipped / failed (and why), dedup counts, cache status, estimated
cost, and per-field sourcing — so you always know where each value came from.
{
"results": [{
"id": "gwp_CvWvRZrFtegkJPxP9CW0",
"name": "Golden Gate Bridge",
"location": { "latitude": 37.8199286, "longitude": -122.4782551 },
"sources": [{
"provider": "nominatim",
"providerPlaceId": "way/27385590",
"fields": ["name", "location", "categories", "address"] // ← what this source contributed
}],
"attributions": ["© OpenStreetMap contributors"]
}],
"meta": {
"providersUsed": [{ "provider": "nominatim", "resultCount": 1, "latencyMs": 2449 }],
"providersSkipped": [], // e.g. { provider: "google", reason: "MISSING_CREDENTIALS" | "QUOTA_EXCEEDED" }
"providersFailed": [], // e.g. { provider: "google", reason: "TIMEOUT" }
"strategy": "first-success",
"cache": { "hit": false }
// merging adds: "dedup": { "before": 3, "after": 1 }
// paid provider: "estimatedCostUSD": 0.032
}
}After a merge, sources[].fields shows (say) the phone came from Google while
the coordinates came from OSM. Walkthrough: docs/recipes.md.
Configuration (optional — everything works without it)
geowire.config.yaml:
providers:
nominatim: { enabled: true } # default ON, no key (search/geocode)
osrm: { enabled: true } # default ON, no key (directions)
google: { enabled: true, apiKey: ${GOOGLE_MAPS_API_KEY} }
yelp: { enabled: true } # env YELP_API_KEY (US/Western business & reviews)
census: { enabled: true } # env CENSUS_API_KEY (US demographics, free)
kakao: { enabled: true } # env KAKAO_REST_API_KEY (KR)
internal: { enabled: true, source: ./my-places.csv, priority: 100 }
routing:
defaultStrategy: merge # first-success | merge | cost-aware | weighted | fastest
providerWeights: # for `weighted`: order by priority·cost·coverage
priority: 0.5
cost: 0.3
coverage: 0.2
budget:
perRequestMaxUSD: 0.10 # over-budget paid providers are skipped, free ones usedKeys come from the environment (${VAR}), never committed in plaintext.
Providers
Provider | Key? | Capabilities |
| none | search, geocode, reverseGeocode |
| none | route, distanceMatrix |
| BYOK | search, geocode, reverseGeocode, getPlace, route, distanceMatrix |
| BYOK | search, geocode, reverseGeocode |
| BYOK | search, geocode |
| BYOK | search, geocode, reverseGeocode |
| BYOK | search, getPlace |
| BYOK | search, getPlace |
| BYOK | demographics |
| none | search |
Regional providers make Korea (Kakao/Naver) and China (Baidu) coverage first-class where OSM is thin and Google has gaps — Baidu returns BD-09 coordinates, which GeoWire converts to WGS84 automatically. Merge them all + your own store data into one deduped record.
Provider roles — each provider does what it's best at
Providers aren't interchangeable; they're complementary. When merge combines
duplicates, GeoWire doesn't just pick the highest-priority provider's whole record —
it sources each field from the provider that's authoritative for it. Every
provider declares its strengths in its manifest (fieldAuthority), so one merged
place can carry OSM's coordinates, Google's reviews, and Kakao's local name at once:
Provider | Authoritative for | Role |
Nominatim / OSM |
| base map geometry & addresses |
| rich business data | |
Foursquare |
| global POI specialist |
Kakao / Naver / Baidu |
| country-specific local names |
Internal (your CSV) |
| your own data is the source of truth |
sources[].fields in every response records which provider contributed which field.
This is the "Stripe for Maps" idea in code: you get one clean place record, and each
part of it comes from whoever knows it best. (Reviews/photos are provider originals —
the policy engine enforces each provider's storage terms; Google originals aren't cached.)
Want another provider? See CONTRIBUTING.md — "Write a provider in 30 minutes".
Recipes & examples
docs/recipes.md — end-to-end recipes: near+radius search, merge + dedup, cost budgets, country routing, your own CSV, self-host.
examples/mcp-clients.md — configs for Claude Desktop/Code, Cursor, Cline, VS Code, Windsurf.
examples/typescript-sdk.md — embed the SDK.
examples/llm-tool-use.md — raw OpenAI / Anthropic function calling. Also LangChain · Vercel AI SDK.
Roadmap
v0.1 is deliberately "It works" scope. Honest about what's not in it yet:
Area | Shipped | Planned |
Operations | search, geocode, reverse-geocode, get-place, directions, distance-matrix, area analysis, isochrones | autocomplete (typed, not wired) |
Strategies |
| — (all 5 shipped) |
Field sourcing | role-based merge (each provider's authoritative fields) | per-field config overrides |
Routing providers | OSRM (no key), Google Routes (BYOK) | Mapbox, Valhalla, HERE |
Routing | explicit | country inference from coordinates |
Analysis | category density / competition / rating landscape, US demographics, activity proxy, isochrones (travel-time catchment) | real foot-traffic (paid data), exact isochrones (ORS/Valhalla), Korea demographics (SGIS) |
Cache | in-memory (LRU) | Redis adapter |
Providers | OSM, OSRM, Google, Yelp, Foursquare, Census, Kakao, Naver, Baidu, your CSV | Mapbox, HERE, TomTom, … (community PRs welcome) |
Rate limiting | per-provider (OSM 1 req/s) | global / per-endpoint |
Architecture
AI agent / app
│ MCP · REST · SDK
▼
GeoWire core ── pipeline: plan → execute → normalize → dedup → rank → policy → cache
│ GeoProvider contract
▼
providers: nominatim · osrm · google · yelp · foursquare · census · kakao · naver · baidu · internal · (community)Monorepo packages: schema · provider-sdk · provider-testkit · core ·
providers/* · mcp · apps/server · cli.
Documentation
Recipes / cookbook — task-oriented, copy-pasteable
Examples — MCP clients, SDK, LangChain, AI SDK, tool use
License
Apache-2.0. GeoWire's code license is separate from the terms of third-party map/place data providers — usage of Google, Mapbox, HERE, Kakao, Naver, etc. is governed by each provider's own terms. OSM data is under ODbL; GeoWire's policy engine enforces attribution and caching limits per provider.
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
- AlicenseAqualityCmaintenanceGeospatial API tools for AI agents — geocoding, reverse geocoding, routing, isochrone, distance matrix, static maps, H3 hexagons, elevation, GPS map-matching, point-in-polygon, address normalisation, timezone lookup, and batch geocoding. Built on OpenStreetMap infrastructure. Cost-effective alternative to Google Maps API.1837MIT
- Alicense-qualityCmaintenanceProvides geolocation, routing, and navigation tools including geocoding, place search, distance matrix, and turn-by-turn directions via NextBillion.ai APIs.81MIT

Magic Lane MCP Serverofficial
AlicenseBqualityBmaintenanceEnables AI agents to become geospatially intelligent assistants with tools for location search, smart routing, round trip planning, reverse geocoding, isochrone analysis, route visualization, geofence management, and interactive map display.81846Apache 2.0- AlicenseAqualityDmaintenanceProvides forward/reverse geocoding, bounding box extraction, nearby places discovery, batch geocoding, route waypoints, and administrative boundary lookup using OpenStreetMap data.10Apache 2.0
Related MCP Connectors
Geocode, reverse geocode, and run Overpass spatial queries on OpenStreetMap data.
Geocode, reverse geocode, and run Overpass spatial queries on OpenStreetMap data.
OpenCage forward + reverse geocoding (free key, 2500/day)
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/geowire/geowire'
If you have feedback or need assistance with the MCP directory API, please join our Discord server