Back to Apps

DuckDB MCP Server
by boettiger-lab
SQL analytics capabilities for local and S3-backed DuckDB databases, enabling AI assistants to perform complex data queries.
0 stars
Works in:CursorVS Code Copilot
Exposes:ToolsPrompts
What it does
This server connects AI assistants to DuckDB, providing powerful SQL analytics capabilities for local database files, in-memory databases, or data stored in Amazon S3. It allows the AI to execute complex queries and analyze large datasets directly.
Tools
query: Execute a SQL query on the DuckDB database to retrieve or manipulate data.
Installation
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"duckdb": {
"command": "uvx",
"args": [
"mcp-server-duckdb",
"--db-path",
":memory:"
]
}
}
}
Supported hosts
- Claude Desktop
- Cursor
- VS Code
- Claude Code
Quick install
uvx mcp-server-duckdb --db-path :memory:Information
- Pricing
- free
- Published
- 6/9/2026
- stars
- 0
Categories
Choose your AI client and follow the steps below.
Cursor
{
"mcpServers": {
"duckdb": {
"command": "uvx",
"args": [
"mcp-server-duckdb",
"--db-path",
":memory:"
]
}
}
}Claude Desktop
{
"mcpServers": {
"duckdb": {
"command": "uvx",
"args": [
"mcp-server-duckdb",
"--db-path",
":memory:"
]
}
}
}VS Code Copilot
{
"mcp": {
"servers": {
"duckdb": {
"command": "uvx",
"args": [
"mcp-server-duckdb",
"--db-path",
":memory:"
]
}
}
}
}





