Skip to content
VS Code

mcp server for VS Code

io.github.hebline/mcp-server

Intelligent API routing for AI agents. Best service, best price, free alternatives.

client:VS Code transport:stdio runtime:npm

Install mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "google-maps-api-key",
      "description": "GOOGLE_MAPS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "deepl-api-key",
      "description": "DEEPL_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "libretranslate-api-key",
      "description": "LIBRETRANSLATE_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@hebline.ai/mcp-server"
      ],
      "env": {
        "GOOGLE_MAPS_API_KEY": "${input:google-maps-api-key}",
        "DEEPL_API_KEY": "${input:deepl-api-key}",
        "LIBRETRANSLATE_API_KEY": "${input:libretranslate-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

mcp server in other clients