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

# Configure GitHub Copilot

> Connect GitHub Copilot Chat in Visual Studio Code to the Suggix MCP server.

Connect Suggix to GitHub Copilot Chat in Visual Studio Code so Copilot can use feedback and roadmap context in Agent mode.

## Create the MCP configuration

Create `.vscode/mcp.json` in the root of your repository for a project-scoped connection:

```json theme={null}
{
  "servers": {
    "suggix": {
      "type": "http",
      "url": "https://mcp.suggix.com/mcp",
      "headers": {
        "Authorization": "Bearer sgx_mcp_your_key"
      }
    }
  }
}
```

Alternatively, add the same server to your personal VS Code MCP settings to use it across projects.

## Start and verify the server

1. Open `.vscode/mcp.json` in Visual Studio Code.
2. Select **Start** above the server definition.
3. Open Copilot Chat and select **Agent** mode.
4. Open the tools menu and confirm that Suggix is available.

Try a prompt such as: `Use Suggix feedback to identify the most requested improvement for this repository.`

<Warning>
  Do not commit a raw API key in `.vscode/mcp.json`. Keep a personal configuration outside the repository when the key cannot be managed through your team's secret workflow.
</Warning>

<Card title="Suggix MCP Overview" icon="plug" href="/mcp/overview">
  Learn how to create and revoke workspace MCP API keys.
</Card>
