.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/motherduckdb/mcp-server-motherduck
home/mcp-servers/motherduckdb/mcp-server-motherduck
motherduckdb avatar

mcp-server-motherduck

bymotherduckdb· 1 MCP server

Installs

44k

Stars

504

Forks

88

Category

Databases

View on GitHub

TL;DR

---

How to install mcp-server-motherduck?

motherduckdb/mcp-server-motherduck
$git clone https://github.com/motherduckdb/mcp-server-motherduck

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install mcp-server-motherduck by running `git clone https://github.com/motherduckdb/mcp-server-motherduck`, then use it for the current task and follow its documentation at https://github.com/motherduckdb/mcp-server-motherduck.

Files · 1

View on GitHub
README.md
1<p align="center">
2 <img src="src/mcp_server_motherduck/assets/duck_feet_square.png" alt="MotherDuck / DuckDB Local MCP Server" width="120">
3</p>
4 
5<h1 align="center">DuckDB / MotherDuck Local MCP Server</h1>
6 
7<p align="center">
8 SQL analytics and data engineering for AI Assistants and IDEs.
9</p>
10 
11---
12 
13Connect AI assistants to your data using DuckDB's powerful analytical SQL engine. Supports connecting to local DuckDB files, in-memory databases, S3-hosted databases, and MotherDuck. Allows executing SQL read- and write-queries, browsing database catalogs, and switching between different database connections on-the-fly.
14 
15**Looking for a fully-managed remote MCP server for MotherDuck?** → [Go to the MotherDuck Remote MCP docs](https://motherduck.com/docs/sql-reference/mcp/)
16 
17### Remote vs Local MCP
18 
19| | **[Remote MCP](https://motherduck.com/docs/sql-reference/mcp/)** | **Local MCP** (this repo) |
20|---|---|---|
21| **Hosting** | Hosted by MotherDuck | Runs locally/self-hosted |
22| **Setup** | Zero-setup | Requires local installation |
23| **Access** | Read-write supported | Read-write supported |
24| **Local filesystem** | - | Query across local and remote databases, ingest data from / export data to local filesystem |
25 
26> 📝 **Migrating from v0.x?**
27> - **Read-only by default**: The server now runs in read-only mode by default. Add `--read-write` to enable write access. See [Securing for Production](#securing-for-production).
28> - **Default database changed**: `--db-path` default changed from `md:` to `:memory:`. Add `--db-path md:` explicitly for MotherDuck.
29> - **MotherDuck read-only requires read-scaling token**: MotherDuck connections in read-only mode require a [read-scaling token](https://motherduck.com/docs/key-tasks/authenticating-and-connecting-to-motherduck/authenticating-to-motherduck/#read-scaling-tokens). Regular tokens require `--read-write`.
30 
31## Quick Start
32 
33**Prerequisites**: Install `uv` via `pip install uv` or `brew install uv`
34 
35### Connecting to In-Memory DuckDB (Dev Mode)
36 
37```json
38{
39 "mcpServers": {
40 "DuckDB (in-memory, r/w)": {
41 "command": "uvx",
42 "args": ["mcp-server-motherduck", "--db-path", ":memory:", "--read-write", "--allow-switch-databases"]
43 }
44 }
45}
46```
47 
48Full flexibility with no guardrails — read-write access and the ability to switch to any database (local files, S3, or MotherDuck) at runtime.
49 
50### Connecting to a Local DuckDB File in Read-Only Mode
51 
52```json
53{
54 "mcpServers": {
55 "DuckDB (read-only)": {
56 "command": "uvx",
57 "args": ["mcp-server-motherduck", "--db-path", "/absolute/path/to/your.duckdb"]
58 }
59 }
60}
61```
62 
63Connects to a specific DuckDB file in read-only mode. Won't hold on to the file lock, so convenient to use alongside a write connection to the same DuckDB file. You can also connect to remote DuckDB files on S3 using `s3://bucket/path.duckdb` — see [Environment Variables](#environment-variables) for S3 authentication. If you're considering third-party access to the MCP, see [Securing for Production](#securing-for-production).
64 
65### Connecting to MotherDuck in Read-Write Mode
66 
67```json
68{
69 "mcpServers": {
70 "MotherDuck (local, r/w)": {
71 "command": "uvx",
72 "args": ["mcp-server-motherduck", "--db-path", "md:", "--read-write"],
73 "env": {
74 "motherduck_token": "<YOUR_MOTHERDUCK_TOKEN>"
75 }
76 }
77 }
78}
79```
80 
81See [Command Line Parameters](#command-line-parameters) for more options, [Securing for Production](#securing-for-production) for deployment guidance, and [Troubleshooting](#troubleshooting) if you encounter issues.
82 
83## Client Setup
84 
85| Client | Config Location | One-Click Install |
86|--------|-----------------|-------------------|
87| **Claude Desktop** | Settings → Developer → Edit Config | [.mcpb (MCP Bundle)](https://github.com/motherduckdb/mcp-server-motherduck/releases/latest/download/mcp-server-motherduck.mcpb) |
88| **Claude Code** | Use CLI commands below | - |
89| **Codex CLI** | Use CLI commands below or `~/.codex/config.toml` | - |
90| **Gemi

Preview

motherduckdb/mcp-server-motherduckmotherduckdb/mcp-server-motherduck
Repomotherduckdb/mcp-server-motherduck
TypeMCP Servers
CategoryDatabases
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPaiduckdb

Related

6 picks
Type
  1. rafaelcartenet avatarmcp-databricks-serverModel Context Protocol (MCP) server for Databricks that empowers AI agents to autonomously interact with Unity Catalog metadata. Enables data discovery, lineage analysis, and intelligent SQL execution.MCP ServersMar 20262.4M40
  2. qdrant avatarmcp-server-qdrantAn official Qdrant Model Context Protocol (MCP) server implementationMCP ServersJul 20262.2M1.5k
  3. supabase avatarSupabase MCPQuery databases, manage projects and deploy edge functionsMCP Serverstoday387k2.8k
  4. mongodb-js avatarmongodb-mcp-serverMongoDB Model Context Protocol ServerMCP ServersJul 2026316k1.1k
  5. ahmedmustahid avatarpostgres-mcp-serverMCP server for interacting with PostgreSQL databasesMCP ServersJul 2025279k31
  6. benborla avatarmcp-server-mysqlMCP server for interacting with MySQL databases with write operations supportMCP ServersJul 202659k2.0k