IPGeolocation.io MCP Server for VS Code
io.github.ipgeolocation/ipgeolocation-io-mcp
Official MCP server for IP geolocation, security, ASN, abuse, timezone, astronomy, and user-agent.
client:VS Code
transport:stdio
runtime:npm
Install IPGeolocation.io MCP Server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ipgeolocation-api-key",
"description": "IPGEOLOCATION_API_KEY",
"password": true
}
],
"servers": {
"ipgeolocation-io-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"ipgeolocation-io-mcp"
],
"env": {
"IPGEOLOCATION_API_KEY": "${input:ipgeolocation-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