Connect VS Code to BCTRL MCP

View as Markdown

Add BCTRL to .vscode/mcp.json (workspace) or your user MCP configuration. The top-level key is servers and the remote type is http:

1{
2 "servers": {
3 "bctrl": {
4 "type": "http",
5 "url": "https://api.bctrl.ai/mcp"
6 }
7 }
8}

Or add it from the command line:

$code --add-mcp "{\"name\":\"bctrl\",\"type\":\"http\",\"url\":\"https://api.bctrl.ai/mcp\"}"

VS Code runs the MCP OAuth flow automatically, with dynamic client registration — a browser opens on first connect. You can also add servers from the Command Palette with MCP: Add Server → HTTP, and manage them with MCP: List Servers.

See Troubleshooting if tools do not appear.