Loading...
npx -y @smithery/cli install mcp-server-duckdb --client claude{
"mcpServers": {
"duckdb": {
"command": "uvx",
"args": [
"mcp-server-duckdb",
"--db-path",
"~/mcp-server-duckdb/data/data.db"
]
}
}
}queryExecutes an arbitrary SQL query against the DuckDB database.
Allows execution of arbitrary SQL, potentially leading to data modification or information disclosure.
The server is relatively safe when running in read-only mode, as it prevents any write operations. However, when running with write access enabled, the risk increases significantly due to the ability to execute arbitrary SQL queries, potentially leading to data modification or deletion. Proper input validation and access control mechanisms are crucial for mitigating these risks.