GitHub Copilot supports MCP servers, letting you use Toolcog for API operations alongside Copilot’s code assistance.
Copilot uses VS Code’s MCP configuration. Add Toolcog through any of these methods:
https://mcp.toolcog.comtoolcogCreate .vscode/mcp.json in your workspace:
{ "servers": { "toolcog": { "type": "http", "url": "https://mcp.toolcog.com" } }}GitHub provides a curated MCP Registry. You can add servers from the registry through VS Code’s Extensions view with the @mcp filter.
In Copilot Chat, ask:
“Find the AWS S3 operations for uploading files”
Copilot will use Toolcog to discover operations, learn their interfaces, and help you use them in your code.
When Copilot needs to access your Toolcog account:
For downstream services (AWS, Stripe, etc.), the same pattern applies.
If you’re on Copilot Business or Enterprise, your organization admin must enable the “MCP servers in Copilot” policy for MCP servers to work.
Connect to team-specific catalogs:
{ "servers": { "toolcog-team": { "type": "http", "url": "https://mcp.toolcog.com/mycompany/team-catalog" } }}In Copilot Chat, ask:
“What Twilio operations are available for sending SMS?”
If Copilot returns a list of operations, Toolcog is connected.