{
  "info": {
    "name": "Geoapify — mcp.ai",
    "description": "REST API for the Geoapify 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/geoapify",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "geoapify_address_autocomplete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/address/autocomplete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "address",
            "autocomplete"
          ]
        },
        "description": "Tool to fetch address suggestions based on partial input. Use when you need to get predictive suggestions from incomplete address text.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bias\": \"\",\n  \"lang\": \"\",\n  \"text\": \"\",\n  \"type\": \"\",\n  \"limit\": 0,\n  \"filter\": \"\",\n  \"format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_batch_requests",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/batch/requests",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "batch",
            "requests"
          ]
        },
        "description": "Create or retrieve asynchronous batch processing jobs for geocoding, reverse geocoding, routing, or isoline APIs. Use cases: - Batch geocode up to 1000 addresses at once (forward geocoding) - Batch re",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"api\": \"\",\n  \"body\": {},\n  \"inputs\": \"\",\n  \"params\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_boundaries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/boundaries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "boundaries"
          ]
        },
        "description": "Retrieve all administrative boundaries that contain a given location. Returns hierarchical boundaries (suburb, city, county, state, country) as GeoJSON features. Use this to find what administrative a",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"lat\": 0,\n  \"lon\": 0,\n  \"lang\": \"\",\n  \"geometry\": \"\",\n  \"boundaries\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_create_batch_forward_geocode_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/batch/forward/geocode/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "batch",
            "forward",
            "geocode",
            "job"
          ]
        },
        "description": "Tool to create a batch forward geocoding job for up to 1000 addresses. Use when you need to geocode multiple addresses asynchronously. Returns a job ID for retrieving results once processing is comple",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bias\": \"\",\n  \"lang\": \"\",\n  \"type\": \"\",\n  \"filter\": \"\",\n  \"addresses\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_create_batch_reverse_geocode_job",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/batch/reverse/geocode/job",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "batch",
            "reverse",
            "geocode",
            "job"
          ]
        },
        "description": "Tool to create a batch reverse geocoding job that converts multiple lat/lon coordinates into addresses asynchronously. Use when you need to reverse geocode multiple coordinates (up to 1000) in one req",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lang\": \"\",\n  \"type\": \"\",\n  \"locations\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_forward_geocoding",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/forward/geocoding",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "forward",
            "geocoding"
          ]
        },
        "description": "Tool to convert an address into geographic coordinates. Use when you need latitude and longitude from an address.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bias\": \"\",\n  \"city\": \"\",\n  \"lang\": \"\",\n  \"name\": \"\",\n  \"text\": \"\",\n  \"type\": \"\",\n  \"limit\": 0,\n  \"state\": \"\",\n  \"apiKey\": \"\",\n  \"filter\": \"\",\n  \"format\": \"\",\n  \"street\": \"\",\n  \"country\": \"\",\n  \"postcode\": \"\",\n  \"housenumber\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_geometry",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/geometry",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "geometry"
          ]
        },
        "description": "Tool to perform geometric operations on stored polygon geometries. Use when combining or intersecting multiple stored geometries.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"operation\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_get_batch_forward_geocode_results",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/batch/forward/geocode/results",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "batch",
            "forward",
            "geocode",
            "results"
          ]
        },
        "description": "Tool to retrieve batch forward geocoding job results using the job ID. Use when you need to fetch geocoded addresses from a previously submitted batch job. Results available in JSON or CSV format. Job",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_get_batch_reverse_geocode_results",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/batch/reverse/geocode/results",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "batch",
            "reverse",
            "geocode",
            "results"
          ]
        },
        "description": "Tool to retrieve batch reverse geocoding job results. Use when you have a batch job ID from creating a batch reverse geocoding job and want to fetch the completed results.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_get_boundaries_consists_of",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/boundaries/consists/of",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "boundaries",
            "consists",
            "of"
          ]
        },
        "description": "Get boundaries that a specified location consists of. Returns child administrative divisions (states for country, districts for city). Useful for drilling down into sub-regions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"lang\": \"\",\n  \"geometry\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_get_map_style",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/map/style",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "map",
            "style"
          ]
        },
        "description": "Tool to retrieve vector map style JSON for MapLibre GL and Mapbox GL. Returns a Mapbox-compatible style specification for rendering vector tiles.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"style\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_get_static_map",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/static/map",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "static",
            "map"
          ]
        },
        "description": "Tool to generate static map images with customizable style, size, center, zoom, markers, and geometries. Use when you need a map image for display or printing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"area\": \"\",\n  \"zoom\": \"\",\n  \"style\": \"\",\n  \"width\": 0,\n  \"center\": \"\",\n  \"format\": \"\",\n  \"height\": 0,\n  \"marker\": \"\",\n  \"geojson\": \"\",\n  \"geometry\": \"\",\n  \"scaleFactor\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_ip_geolocation",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/ip/geolocation",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "ip",
            "geolocation"
          ]
        },
        "description": "Lookup geographic location information for an IP address. Returns city-level location data including country, region, city, coordinates, and additional metadata like currency and language. If no IP is",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ip\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_isoline",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/isoline",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "isoline"
          ]
        },
        "description": "Tool to generate isochrone or isodistance isolines. Use when visualizing reachable areas from a point; use `id` to poll ongoing calculations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"lat\": 0,\n  \"lon\": 0,\n  \"mode\": \"\",\n  \"type\": \"\",\n  \"avoid\": \"\",\n  \"range\": \"\",\n  \"units\": \"\",\n  \"traffic\": \"\",\n  \"max_speed\": 0,\n  \"route_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_list_postcodes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/postcodes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "postcodes"
          ]
        },
        "description": "Tool to list postcodes within a specified area or boundary. Use when you need to retrieve multiple postcodes in a geographic region using filters like circle, rectangle, or place ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"filter\": \"\",\n  \"countrycode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_map_matching",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/map/matching",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "map",
            "matching"
          ]
        },
        "description": "Snap GPS traces to the road network for accurate route reconstruction. Use this tool to: - Correct GPS drift and inaccuracies in recorded tracks - Align vehicle/cycling/walking traces to actual roads ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mode\": \"\",\n  \"waypoints\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_map_tiles",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/map/tiles",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "map",
            "tiles"
          ]
        },
        "description": "Tool to fetch raster map tiles or style JSON from Geoapify. Use when rendering custom maps with specific styles.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"x\": 0,\n  \"y\": 0,\n  \"z\": 0,\n  \"mode\": \"\",\n  \"style\": \"\",\n  \"apiKey\": \"\",\n  \"retina\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_marker_icon",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/marker/icon",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "marker",
            "icon"
          ]
        },
        "description": "Generate custom map marker icons as PNG images. Creates customizable marker icons for use in mapping applications (Leaflet, MapLibre GL, Google Maps, etc.). Supports multiple styles (material, circle,",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"icon\": \"\",\n  \"size\": 0,\n  \"text\": \"\",\n  \"type\": \"\",\n  \"color\": \"\",\n  \"iconType\": \"\",\n  \"noShadow\": false,\n  \"contentSize\": 0,\n  \"scaleFactor\": 0,\n  \"shadowColor\": \"\",\n  \"strokeColor\": \"\",\n  \"contentColor\": \"\",\n  \"noWhiteCircle\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_place_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/place/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "place",
            "details"
          ]
        },
        "description": "Tool to retrieve detailed information about a specific place. Use when you have a place ID or coordinates and need comprehensive metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"lat\": 0,\n  \"lon\": 0,\n  \"lang\": \"\",\n  \"features\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_places",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/places",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "places"
          ]
        },
        "description": "Search for points of interest (POIs) like restaurants, hotels, attractions, hospitals, etc. within a geographic area. Use this tool when you need to find places by category near a location. You must p",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"bias\": \"\",\n  \"lang\": \"\",\n  \"name\": \"\",\n  \"limit\": 0,\n  \"filter\": \"\",\n  \"offset\": 0,\n  \"categories\": \"\",\n  \"conditions\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_postcode",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/postcode",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "postcode"
          ]
        },
        "description": "Tool to retrieve postcode information for a location. Use when you need to fetch postcode details based on a given postcode or geographic coordinates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lat\": 0,\n  \"lon\": 0,\n  \"lang\": \"\",\n  \"format\": \"\",\n  \"geometry\": \"\",\n  \"postcode\": \"\",\n  \"countrycode\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_reverse_geocoding",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/reverse/geocoding",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "reverse",
            "geocoding"
          ]
        },
        "description": "Tool to reverse geocode coordinates into a structured address. Use when converting lat/lon to human-readable addresses.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lat\": 0,\n  \"lon\": 0,\n  \"lang\": \"\",\n  \"type\": \"\",\n  \"limit\": 0,\n  \"format\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_route_matrix",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/route/matrix",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "route",
            "matrix"
          ]
        },
        "description": "Tool to compute travel time and distance matrices. Use when you need durations and distances between multiple origin and destination pairs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"mode\": \"\",\n  \"type\": \"\",\n  \"avoid\": \"\",\n  \"units\": \"\",\n  \"apiKey\": \"\",\n  \"sources\": \"\",\n  \"targets\": \"\",\n  \"traffic\": \"\",\n  \"max_speed\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_route_planner",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/route/planner",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "route",
            "planner"
          ]
        },
        "description": "Optimize multi-agent routes for deliveries, pickups, and service jobs. Solves Vehicle Routing Problems (VRP) including: Travelling Salesman (TSP), Capacitated VRP, VRP with Time Windows, and Pickup-De",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"jobs\": \"\",\n  \"mode\": \"\",\n  \"type\": \"\",\n  \"avoid\": \"\",\n  \"units\": \"\",\n  \"agents\": \"\",\n  \"traffic\": \"\",\n  \"locations\": \"\",\n  \"max_speed\": 0,\n  \"shipments\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "geoapify_routing",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/routing",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "routing"
          ]
        },
        "description": "Tool to calculate routes between multiple waypoints. Use when you need both distance, time, and turn-by-turn directions for two or more coordinates.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"lang\": \"\",\n  \"mode\": \"\",\n  \"type\": \"\",\n  \"avoid\": \"\",\n  \"units\": \"\",\n  \"format\": \"\",\n  \"details\": \"\",\n  \"traffic\": \"\",\n  \"max_speed\": 0,\n  \"waypoints\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}