MCPClients

VS Code Copilot

Connect VS Code Copilot to the Tradebird MCP server.

Set the endpoint:

export TRADEBIRD_MCP_URL="https://api.tradebird.ai/mcp"

Create .vscode/mcp.json for a workspace or open the user MCP configuration from the Command Palette.

{
  "servers": {
    "tradebird": {
      "type": "http",
      "url": "https://api.tradebird.ai/mcp"
    }
  }
}

For a token-protected endpoint, use input variables or an environment-backed secret rather than hardcoding credentials:

{
  "servers": {
    "tradebird": {
      "type": "http",
      "url": "https://api.tradebird.ai/mcp",
      "headers": {
        "Authorization": "Bearer ${input:tradebirdMcpToken}"
      }
    }
  },
  "inputs": [
    {
      "id": "tradebirdMcpToken",
      "type": "promptString",
      "description": "Tradebird MCP token",
      "password": true
    }
  ]
}

Start the server from the MCP view or Command Palette, then use Copilot Chat in agent mode.