# Geokeo — how to use (mcp.ai)

Connect your Geokeo account and use 2 tools for developer tools straight from your AI agent. Connect with your own API key. Geokeo provides geocoding services, converting addresses to coordinates and vice versa, with a free tier offering 2,500 daily API requests.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_geokeo?ms=1787296020000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `geokeo_forward_geocoding`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/geokeo`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/geokeo/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/geokeo/forward/geocoding` — Convert an address or place name into geographic coordinates (latitude/longitude). Use this tool when you need to: - Find coordinates for a landmark (e.g., "Eiffel Tower", "Empire State Building") - G
  - body: { q: string, country?: string }
- `POST https://api.mcp.ai/api/geokeo/reverse/geocoding` — Convert geographic coordinates (latitude/longitude) to a human-readable address. Use this tool when you have GPS coordinates and need to find the corresponding street address, city, country, or nearby
  - body: { api?: string, lat: number, lng: number, format?: string }

## Example prompts
- "What can I do in Geokeo?"
- "Show me a summary of my Geokeo account"

## More
- Page: https://mcp.ai/geokeo
- Agent spec (llms.txt): https://mcp.ai/geokeo/llms.txt
- Postman collection: https://mcp.ai/geokeo/postman.json
