{
  "info": {
    "name": "Geokeo — mcp.ai",
    "description": "REST API for the Geokeo MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/geokeo",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "geokeo_forward_geocoding",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/forward/geocoding",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "forward",
            "geocoding"
          ]
        },
        "description": "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": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"country\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geokeo_reverse_geocoding",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/reverse/geocoding",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "reverse",
            "geocoding"
          ]
        },
        "description": "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": {
          "mode": "raw",
          "raw": "{\n  \"api\": \"\",\n  \"lat\": 0,\n  \"lng\": 0,\n  \"format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}