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.

连接

将此配置添加到 .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>"
      }
    }
  }
}

工具 (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": {}
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
Tinybird (@tinybirdco)
代码仓库
https://github.com/tinybirdco/mcp-tinybird
星标
0
最后更新
2026年7月12日