QuestDB MCP server connects coding agents to a running QuestDB Web Console. The agent gets tools to create notebook cells, run queries, and build charts.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-server-questdb": {
"command": "npx",
"args": [
"-y",
"questdb/mcp-server-questdb"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add mcp-server-questdb npx -y questdb/mcp-server-questdb
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"mcp-server-questdb": {
"command": "npx",
"args": [
"-y",
"questdb/mcp-server-questdb"
]
}
}
}
📋 Copy