MCP

Connect Buron to Claude Code

Get the Buron MCP server running in Claude Code and prove the connection with a live query.

By the end of this walkthrough you'll have asked Claude Code a question about your ad data and gotten a real answer back.

You'll need a Buron account with a team that has Google Ads connected. If you haven't done that yet, head to Connect your Google Ads account first.

Fastest: one command

From your terminal:

claude mcp add --transport http buron https://app.buron.ai/api/mcp

That's it. Add --scope project if you want the server shared with everyone in the repo (it's written to .mcp.json).

Or: the plugin (server + skills together)

Buron also ships as a Claude Code plugin that installs the MCP server and the Buron skills (/launch, /setup-google-ads-tracking) in one step. Inside Claude Code:

/plugin marketplace add buron-ai/skills
/plugin install buron@buron

Or: the Buron CLI

If you use the CLI, buron setup writes the MCP config and installs the skills for every editor you pick:

npm install -g @buron/cli
buron setup

Sign in

The first time Claude Code connects, run /mcp, select buron, and choose Authenticate. Your browser opens to sign in to Buron; approve the connection and return to your terminal. You won't need to sign in again until the session expires.

Prove it works

Start a conversation and ask something about your ad data:

What was my total spend over the last 7 days?

The agent calls the Buron MCP server, runs a semantic query against your data, and returns the numbers. If you see real data, the connection is working.

Set up manually

If you'd rather edit config directly, add this to .mcp.json at your repo root (create the file if it doesn't exist), then restart Claude Code:

{
  "mcpServers": {
    "buron": {
      "type": "http",
      "url": "https://app.buron.ai/api/mcp"
    }
  }
}

If your workspace has more than one team, append ?teamId=<team-id> to the URL. You'll find the exact URL for each team under Settings, then MCP in Buron.

What's next

Was this page helpful?

On this page