|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "com.motherduck-mcp-uvx", |
| 4 | + "name": "MotherDuck (uvx)", |
| 5 | + "alias": "motherduck", |
| 6 | + "description": "Query data with DuckDB's analytical SQL across local DuckDB files, in-memory databases, S3, and the MotherDuck cloud. Run SQL and browse database catalogs. Read-only by default.", |
| 7 | + "logo": "https://avatars.githubusercontent.com/u/106357348?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": [ |
| 10 | + "database" |
| 11 | + ], |
| 12 | + "tags": [ |
| 13 | + "motherduck", |
| 14 | + "duckdb", |
| 15 | + "sql", |
| 16 | + "database", |
| 17 | + "analytics", |
| 18 | + "data-warehouse" |
| 19 | + ], |
| 20 | + "transport": { |
| 21 | + "type": "stdio", |
| 22 | + "command": "uvx", |
| 23 | + "args": [ |
| 24 | + "mcp-server-motherduck", |
| 25 | + "--db-path", |
| 26 | + "md:" |
| 27 | + ], |
| 28 | + "env": { |
| 29 | + "motherduck_token": "${input:MOTHERDUCK_TOKEN}" |
| 30 | + }, |
| 31 | + "metadata": { |
| 32 | + "inputs": [ |
| 33 | + { |
| 34 | + "id": "MOTHERDUCK_TOKEN", |
| 35 | + "label": "MotherDuck Token", |
| 36 | + "description": "MotherDuck access token, used to connect to the MotherDuck cloud (md: database path). Leave empty when using a local DuckDB file or :memory: instead.", |
| 37 | + "type": "text", |
| 38 | + "required": false, |
| 39 | + "secret": true, |
| 40 | + "placeholder": "***************************", |
| 41 | + "obtain": { |
| 42 | + "url": "https://app.motherduck.com/settings/tokens", |
| 43 | + "instructions": "1. Sign in to MotherDuck\n2. Open Settings > Access Tokens\n3. Click Create token (Read/Write or Read Scaling)\n4. Copy the token", |
| 44 | + "button_label": "Create Token" |
| 45 | + } |
| 46 | + } |
| 47 | + ] |
| 48 | + } |
| 49 | + }, |
| 50 | + "auth": { |
| 51 | + "type": "optional_api_key", |
| 52 | + "instructions": "A MotherDuck access token is required only for the MotherDuck cloud (--db-path md:). Local DuckDB files and :memory: need no token." |
| 53 | + }, |
| 54 | + "contributor": { |
| 55 | + "name": "MotherDuck", |
| 56 | + "github": "motherduckdb", |
| 57 | + "url": "https://motherduck.com" |
| 58 | + }, |
| 59 | + "links": { |
| 60 | + "repository": "https://github.com/motherduckdb/mcp-server-motherduck", |
| 61 | + "homepage": "https://motherduck.com", |
| 62 | + "documentation": "https://github.com/motherduckdb/mcp-server-motherduck#readme" |
| 63 | + }, |
| 64 | + "platforms": [ |
| 65 | + "all" |
| 66 | + ], |
| 67 | + "capabilities": { |
| 68 | + "tools": true, |
| 69 | + "resources": false, |
| 70 | + "prompts": false, |
| 71 | + "read_only_mode": true |
| 72 | + }, |
| 73 | + "changelog_url": "https://github.com/motherduckdb/mcp-server-motherduck/releases" |
| 74 | +} |
0 commit comments