VS Code
Connect AllMCP to VS Code with GitHub Copilot in Agent mode.
Get your API key Browse providers-
Locate the config file
Create
.vscode/mcp.jsonin your workspace root. This file is workspace-scoped — each project can point to a different MCP server or user.For a user-level config, create
mcp.jsonin your VS Code user settings directory. -
Add the
allmcpblock.vscode/mcp.json {"servers": {"allmcp": {"type": "http","url": "https://go.allmcp.co/mcp/","headers": {"X-API-Key": "YOUR_API_KEY"}}}} -
Apply the config
VS Code picks up
.vscode/mcp.jsonautomatically — no restart needed. You may need to reload the Copilot chat panel. -
Verify it’s working
Open the Copilot chat (
Ctrl+Alt+I), switch to Agent mode, and type:List available AllMCP integrations
Per-user scoping
Section titled “Per-user scoping”If several people share a workspace, add a user_id to the URL so each person keeps their own separate set of connected providers and one person’s credentials never mix with another’s:
{ "servers": { "allmcp": { "type": "http", "url": "https://go.allmcp.co/mcp/?user_id=your-user-id", "headers": { "X-API-Key": "YOUR_API_KEY" } } }}Gitignore
Section titled “Gitignore”If your .vscode/mcp.json contains a personal API key, add it to .gitignore:
.vscode/mcp.json