VS Code supports MCP servers through GitHub Copilot Chat. You can use Toolcog for API operations directly in your editor.
VS Code offers multiple ways to add MCP servers:
https://mcp.toolcog.comtoolcogCreate .vscode/mcp.json in your project:
{ "servers": { "toolcog": { "type": "http", "url": "https://mcp.toolcog.com" } }}Add to your VS Code settings.json:
{ "mcp.servers": { "toolcog": { "type": "http", "url": "https://mcp.toolcog.com" } }}chat.mcp.gallery.enabled to true@mcpVS Code prompts you to confirm trust for new MCP servers. When first connecting to Toolcog, confirm that you trust the server.
In Copilot Chat, ask:
“Find Salesforce operations for managing leads”
Copilot will use Toolcog to discover operations and help you integrate them into your code.
When VS Code needs to access your Toolcog account:
For downstream services, the same pattern applies.
VS Code can auto-discover MCP servers from other tools like Claude Desktop. If you’ve already configured Toolcog in Claude Desktop, VS Code may detect it automatically.
Connect to specific catalogs:
{ "servers": { "toolcog-internal": { "type": "http", "url": "https://mcp.toolcog.com/mycompany/internal-apis" } }}In Copilot Chat, ask:
“What GitHub operations are available for repositories?”
If Copilot returns a list of operations, Toolcog is connected.
chat.mcp.autostart is enabled