geocode
Convert addresses into precise geographic coordinates using the geocode tool on the MCP Server Boilerplate. Ideal for location-based applications and services.
Instructions
Convert an address to coordinates
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The address to geocode |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "The address to geocode",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}