mapsi mcp for VS Code
io.github.algolayertechnologies/mapsi-mcp
Geocoding, routing, isochrone, H3, elevation and 13 more geospatial tools via OpenStreetMap.
client:VS Code
transport:stdio
runtime:npm
Install mapsi mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mapsi-api-key",
"description": "MAPSI_API_KEY",
"password": true
}
],
"servers": {
"mapsi-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mapsi-mcp"
],
"env": {
"MAPSI_API_KEY": "${input:mapsi-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