Skip to content
VS Code

mcp for VS Code

io.github.930m310n/mcp

MCP server for the Geomelon geographic API — stdio and remote HTTP transports

client:VS Code transport:stdio runtime:npm

Install mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "geomelon-api-key",
      "description": "GEOMELON_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "port",
      "description": "PORT",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "geomelon-mcp"
      ],
      "env": {
        "GEOMELON_API_KEY": "${input:geomelon-api-key}",
        "PORT": "${input:port}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

mcp in other clients