|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "co.tinybird-mcp", |
| 4 | + "name": "Tinybird", |
| 5 | + "alias": "tinybird", |
| 6 | + "description": "Query and manage Tinybird analytics data sources and endpoints. Run SQL queries, explore schemas, and publish API endpoints.", |
| 7 | + "icon": "https://avatars.githubusercontent.com/u/53208553?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": ["database", "monitoring"], |
| 10 | + "tags": ["tinybird", "analytics", "sql", "real-time", "data-pipelines", "clickhouse"], |
| 11 | + |
| 12 | + "transport": { |
| 13 | + "type": "stdio", |
| 14 | + "command": "uvx", |
| 15 | + "args": ["mcp-tinybird", "stdio"], |
| 16 | + "env": { |
| 17 | + "TB_API_URL": "${input:TB_API_URL}", |
| 18 | + "TB_ADMIN_TOKEN": "${input:TB_ADMIN_TOKEN}" |
| 19 | + }, |
| 20 | + "metadata": { |
| 21 | + "inputs": [ |
| 22 | + { |
| 23 | + "id": "TB_API_URL", |
| 24 | + "label": "Tinybird API URL", |
| 25 | + "description": "Your Tinybird workspace API URL.", |
| 26 | + "type": "url", |
| 27 | + "required": true, |
| 28 | + "secret": false, |
| 29 | + "placeholder": "https://api.us-east.tinybird.co", |
| 30 | + "obtain": { |
| 31 | + "url": "https://www.tinybird.co/docs/api-reference/overview", |
| 32 | + "instructions": "1. Go to your Tinybird workspace\n2. Find your region-specific API URL (e.g., https://api.us-east.tinybird.co)\n3. Copy the URL", |
| 33 | + "button_label": "Get API URL" |
| 34 | + } |
| 35 | + }, |
| 36 | + { |
| 37 | + "id": "TB_ADMIN_TOKEN", |
| 38 | + "label": "Tinybird Admin Token", |
| 39 | + "description": "Admin token for your Tinybird workspace.", |
| 40 | + "type": "password", |
| 41 | + "required": true, |
| 42 | + "secret": true, |
| 43 | + "placeholder": "p.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", |
| 44 | + "obtain": { |
| 45 | + "url": "https://app.tinybird.co/tokens", |
| 46 | + "instructions": "1. Go to app.tinybird.co > Tokens\n2. Copy your admin token or create a new one\n3. The token starts with p.", |
| 47 | + "button_label": "Get Token" |
| 48 | + } |
| 49 | + } |
| 50 | + ] |
| 51 | + } |
| 52 | + }, |
| 53 | + |
| 54 | + "auth": { |
| 55 | + "type": "api_key", |
| 56 | + "instructions": "Get your API URL and admin token from your Tinybird workspace at https://app.tinybird.co" |
| 57 | + }, |
| 58 | + |
| 59 | + "contributor": { |
| 60 | + "name": "Tinybird", |
| 61 | + "github": "tinybirdco", |
| 62 | + "url": "https://www.tinybird.co" |
| 63 | + }, |
| 64 | + |
| 65 | + "links": { |
| 66 | + "repository": "https://github.com/tinybirdco/mcp-tinybird", |
| 67 | + "homepage": "https://www.tinybird.co", |
| 68 | + "documentation": "https://www.tinybird.co/docs/forward/analytics-agents/mcp" |
| 69 | + }, |
| 70 | + |
| 71 | + "platforms": ["all"], |
| 72 | + |
| 73 | + "capabilities": { |
| 74 | + "tools": true, |
| 75 | + "resources": false, |
| 76 | + "prompts": false, |
| 77 | + "read_only_mode": false |
| 78 | + } |
| 79 | +} |
0 commit comments