> ## Documentation Index
> Fetch the complete documentation index at: https://docs.paradime.io/llms.txt
> Use this file to discover all available pages before exploring further.

# GitHub Copilot

> Connect the Paradime MCP server to GitHub Copilot in VS Code with a .vscode/mcp.json config so Copilot can query your warehouse, dbt™ catalog, and lineage.

<Info>
  First complete [Steps 1–2 in the Overview](/products/dino-ai/mcp-server) to generate your MCP token and copy your MCP server URL.
</Info>

1. In your repository (or globally), create or open `.vscode/mcp.json`.
2. Add the Paradime entry:

```json title=".vscode/mcp.json" theme={"system"}
{
  "servers": {
    "paradime": {
      "type": "http",
      "url": "<mcp-endpoint-url>",
      "headers": {
        "Authorization": "Bearer ${input:paradime-token}"
      }
    }
  },
  "inputs": [
    {
      "id": "paradime-token",
      "type": "promptString",
      "description": "Paradime MCP token",
      "password": true
    }
  ]
}
```

Replace `<mcp-endpoint-url>` with your URL from Step 2.

3. Reload VS Code. The first time you use Copilot Chat, you'll be prompted for the Paradime token. Paste in the token from Step 1.

<Info>
  Using `${input:paradime-token}` keeps the token out of the file itself — VS Code stores it in its secret store. **Don't commit the file with the token inlined.**
</Info>


## Related topics

- [GitHub PR Management Tool](/products/dino-ai/tools-and-features/github-pr-management-tool.md)
- [GitHub](/integrations/github.md)
- [GitHub Actions CLI](/developers/paradime-cli/github-actions-cli.md)
