mcp ip2location io for VS Code
io.github.ip2location/mcp-ip2location-io
IP Geolocation MCP server that query the geolocation information using IP2Location.io API.
client:VS Code
transport:stdio
runtime:pypi
Install mcp ip2location io in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ip2location-api-key",
"description": "IP2LOCATION_API_KEY",
"password": true
}
],
"servers": {
"mcp-ip2location-io": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-ip2location-io"
],
"env": {
"IP2LOCATION_API_KEY": "${input:ip2location-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