{
  "info": {
    "name": "Geocodio — mcp.ai",
    "description": "REST API for the Geocodio 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/geocodio",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "geocodio_batch_reverse_geocode",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/batch/reverse/geocode",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "batch",
            "reverse",
            "geocode"
          ]
        },
        "description": "Tool to batch reverse geocode up to 10,000 coordinates in one request. Use when you need addresses for many lat/lon pairs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"coordinates\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geocodio_delete_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "list"
          ]
        },
        "description": "Permanently deletes a Geocodio spreadsheet list by its ID. Use this to cancel a processing list job or remove a completed list. This action is destructive and cannot be undone. The list_id must be obt",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"list_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geocodio_geocode_batch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/geocode/batch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "geocode",
            "batch"
          ]
        },
        "description": "Tool to batch geocode up to 10,000 addresses to coordinates in one request. Use when you need to convert multiple addresses to lat/lon coordinates. Optionally calculates distances to specified destina",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"addresses\": \"\",\n  \"destinations\": \"\",\n  \"distance_mode\": \"\",\n  \"distance_units\": \"\",\n  \"distance_order_by\": \"\",\n  \"distance_sort_order\": \"\",\n  \"distance_max_results\": 0,\n  \"distance_max_distance\": 0,\n  \"distance_max_duration\": 0,\n  \"distance_min_distance\": 0,\n  \"distance_min_duration\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geocodio_geocode_google_maps_compatible",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/geocode/google/maps/compatible",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "geocode",
            "google",
            "maps",
            "compatible"
          ]
        },
        "description": "Tool to geocode addresses using Google Maps-compatible API format. Use when you need a drop-in replacement for Google Maps Geocoding API for US and Canada addresses.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"latlng\": \"\",\n  \"address\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geocodio_get_coordinates_for_batch_reverse_geocode",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/coordinates/for/batch/reverse/geocode",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "coordinates",
            "for",
            "batch",
            "reverse",
            "geocode"
          ]
        },
        "description": "Utility tool that returns a predefined list of sample US coordinates (latitude,longitude strings). Use this to obtain ready-to-use coordinate inputs for the batch reverse geocode action. The coordinat",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geocodio_single_geocode",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/single/geocode",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "single",
            "geocode"
          ]
        },
        "description": "Tool to forward geocode a single address. Use when you need coordinates and metadata for one address.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"city\": \"\",\n  \"limit\": 0,\n  \"state\": \"\",\n  \"county\": \"\",\n  \"fields\": \"\",\n  \"format\": \"\",\n  \"street\": \"\",\n  \"country\": \"\",\n  \"street2\": \"\",\n  \"postal_code\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geocodio_single_reverse_geocode",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/single/reverse/geocode",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "single",
            "reverse",
            "geocode"
          ]
        },
        "description": "Tool to reverse geocode a single coordinate. Use when you need to convert one lat,lng to an address.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lat\": 0,\n  \"lng\": 0,\n  \"limit\": 0,\n  \"fields\": \"\",\n  \"format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}