MCP

Connect Buron to GitHub Copilot

Add the Buron MCP server to GitHub Copilot in VS Code so the agent can access your team's data.

This guide assumes you already have a Buron account with a team set up. If not, start with Install the Buron CLI.

Set up with the CLI

Run setup in your project folder:

buron setup

Select GitHub Copilot when asked which editors to install into, and say yes when asked to add the MCP server. The CLI writes the config to .vscode/mcp.json.

Sign in

Restart VS Code to pick up the new MCP server. The first time Copilot connects, your browser opens to sign in. Approve the connection and return to VS Code.

Verify the connection

In Copilot's agent mode, ask:

List my available dashboards in Buron

If you see dashboards, the connection is working.

Set up manually

Copy your MCP server URL from Settings in Buron. Create or edit .vscode/mcp.json in your project:

{
  "servers": {
    "buron": {
      "type": "streamable-http",
      "url": "https://app.buron.ai/api/mcp?teamId=<your-team-id>"
    }
  }
}

Next steps

Was this page helpful?

On this page