GeoLabel for VS Code
io.github.tylercoxdruin/geolabel
Turn GPS coordinates into place name, category, and live opening hours via OpenStreetMap.
client:VS Code
transport:stdio
runtime:pypi
Install GeoLabel in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "geolabel-api-key",
"description": "GEOLABEL_API_KEY",
"password": true
}
],
"servers": {
"geolabel": {
"type": "stdio",
"command": "uvx",
"args": [
"geolabel-mcp"
],
"env": {
"GEOLABEL_API_KEY": "${input:geolabel-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs