KosmoKrator

other

Google Maps MCP Gateway for AI Agents

Expose Google Maps tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.

7 functions 7 read 0 write API key auth

Google Maps MCP Gateway

Expose Google Maps to MCP clients with `kosmokrator mcp:serve --integration=google-maps`.

If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.

curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
kosmokrator mcp:gateway:install --integration=google-maps --write=deny --json
{
  "mcpServers": {
    "kosmokrator-google-maps": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=google-maps",
        "--write=deny"
      ]
    }
  }
}

Serve Manually

kosmokrator mcp:serve --integration=google-maps --write=deny

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP toolSource functionType
integration__google_maps__google_maps_geocode_address google-maps.google_maps_geocode_address Read read
integration__google_maps__google_maps_reverse_geocode google-maps.google_maps_reverse_geocode Read read
integration__google_maps__google_maps_search_places google-maps.google_maps_search_places Read read
integration__google_maps__google_maps_get_place_details google-maps.google_maps_get_place_details Read read
integration__google_maps__google_maps_get_directions google-maps.google_maps_get_directions Read read
integration__google_maps__google_maps_get_distance_matrix google-maps.google_maps_get_distance_matrix Read read
integration__google_maps__google_maps_get_current_user google-maps.google_maps_get_current_user Read read

Write Access

Start with --write=deny for read-only MCP clients. Use --write=ask or --write=allow only when the client and workspace are trusted.