find_coordinates
Locate geographical coordinates using an address with the MCP Kakao Local server. Input an address to retrieve precise latitude and longitude data for mapping purposes.
Instructions
Find coordinates of a given address
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| address | Yes | address to search for | |
| page | No | page number of result | 
Input Schema (JSON Schema)
{
  "properties": {
    "address": {
      "description": "address to search for",
      "minLength": 1,
      "title": "Address",
      "type": "string"
    },
    "page": {
      "default": 1,
      "description": "page number of result",
      "minimum": 1,
      "title": "Page",
      "type": "integer"
    }
  },
  "required": [
    "address"
  ],
  "title": "find_coordinatesArguments",
  "type": "object"
}