---
title: Tinybird
description: Query pipes and data sources in your Tinybird Workspace.
type: connection
keywords:
  - mcp
  - sql
  - analytics
  - pipes
  - datasources
  - queries
  - connect
---

# Tinybird

Connection integration for eve. Query pipes and data sources in your Tinybird Workspace.

## Install

Add the connection from eve's registry. This writes the initial definition under `agent/connections/` and installs its authentication dependency when needed:

```bash
eve add connection/tinybird
```

## Quick start

### MCP · App

Create `agent/connections/tinybird.ts`. The connection name is derived from the filename:

```ts
// agent/connections/tinybird.ts
import { connect } from "@vercel/connect/eve";
import { defineMcpClientConnection } from "eve/connections";

export default defineMcpClientConnection({
  url: "https://mcp.tinybird.co",
  description: "Tinybird: query pipes and data sources, and run SQL. A token grants one Workspace, so add a connection per Workspace.",
  auth: connect({ connector: "tinybird", principalType: "app" }),
});
```

Connect authenticates as the agent itself through one shared installation, with no per-user consent.

## Configure

### MCP · App

Link your project, create the connector, and pull OIDC locally:

```bash
vercel link
vercel connect create tinybird
vercel env pull
```

See the [Connections docs](/docs/connections) for principal types, headers, approval, and protocol-specific filters.

[Read the full connection documentation](/docs/connections/mcp)

---

For a semantic overview of all documentation, see [/sitemap.md](/sitemap.md)

For an index of all available documentation, see [/llms.txt](/llms.txt)

For agent-facing discovery, including API and MCP surfaces, see [/agents.md](/agents.md)