Skip to content
VS Code

bamwor mcp server for VS Code

io.github.bamwor-dev/bamwor-mcp-server

World geographic data for AI agents: 261 countries, 5.2M cities, rankings, and 9 indexes.

client:VS Code transport:stdio runtime:npm

Install bamwor mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "bamwor-api-key",
      "description": "BAMWOR_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "bamwor-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "bamwor-mcp-server"
      ],
      "env": {
        "BAMWOR_API_KEY": "${input:bamwor-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

bamwor mcp server in other clients