Tinybird MCP Server
Databasestdio
MCP server for interacting with a Tinybird Workspace from any MCP client. Lets AI agents explore data sources, call published API endpoints, run SQL queries over real-time data, and push datafiles, making Tinybird's analytics readily available to LLM-driven workflows.
Connect
Add this configuration to .claude/mcp.json
{
"mcpServers": {
"tinybird": {
"command": "uvx",
"args": [
"mcp-tinybird",
"stdio"
],
"env": {
"TB_API_URL": "<YOUR_TB_API_URL>",
"TB_ADMIN_TOKEN": "<YOUR_TB_ADMIN_TOKEN>"
}
}
}
}Tools (3)
list_data_sources
List the data sources available in the Tinybird Workspace.
{
"type": "object",
"properties": {}
}run_select_query
Run a read-only SQL query against Tinybird data sources.
{
"type": "object",
"required": [
"query"
],
"properties": {
"query": {
"type": "string",
"description": "SQL SELECT query to execute"
}
}
}list_endpoints
List published Tinybird API endpoints that can be called as tools.
{
"type": "object",
"properties": {}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- Author
- Tinybird (@tinybirdco)
- Stars
- 0
- Last Updated
- July 12, 2026