Skip to content

Connect your agent

Authorize an AI agent to work in BitBoard. Connected agents read and edit your dashboards through the Model Context Protocol.

https://app.bitboard.work/mcp

You can also copy this from BitBoard under Settings → Agent access.

  1. Open Claude → CustomizeConnectors.
  2. Click +, then Add custom connector.
  3. Paste your MCP URL.
  4. Authorize BitBoard when prompted.

Claude MCP docs

BitBoard implements the Model Context Protocol over OAuth 2.0. Agents not listed here can still connect: paste the MCP URL into any MCP-compatible client.

Once your agent is connected, it can load data into a dashboard two ways. Every successful add becomes a named source in the dashboard’s catalog, queryable from any SQL block.

Push directly. When the data is already in the agent’s context (a small table from a previous step, a hand-curated CSV), dashboard_push_data writes it inline. Use dashboard_append_rows to extend an existing table without re-sending what’s there.

Upload a local file. Call dashboard_create_upload_url to mint a short-lived signed PUT URL. The agent’s host streams the file directly to that URL, then dashboard_finalize_upload converts it (typically to Parquet) and registers it as a source. Use this when the file lives on the agent’s machine and is too large to push inline.

For ongoing access to live data (your warehouse, your application database), see Connect your data.