Skip to content
VS Code

allmcps server for VS Code

io.github.jackalope-dev/allmcps-server

Search, browse, and submit MCP servers to the AllMCPs.com directory.

client:VS Code transport:stdio runtime:npm

Install allmcps server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "allmcps-mcp-url",
      "description": "ALLMCPS_MCP_URL",
      "password": true
    }
  ],
  "servers": {
    "allmcps-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "allmcps-server"
      ],
      "env": {
        "ALLMCPS_MCP_URL": "${input:allmcps-mcp-url}"
      }
    }
  }
}

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

allmcps server in other clients