Using the in-memory DuckDB MCP server in VS Code (Augment Code extension) on Windows, every query tool call hung forever. The same setup on WSL returned fine. The reporter noticed the default output format is markdown, which renders through pandas, and switching to duckbox or text formats made the tool work on Windows too.
mcp-server-motherduck query tool hangs forever on Windows (default markdown output)
- mcp-server-motherduckproduct
- duckboxproduct
- pandaslibrary
- DuckDBdatabase
- MotherDuckorganization
- uvxtool
- +3 more
The default markdown result format goes through pandas, which misbehaves on Windows here. Two workarounds, both verified by the reporter:
uvx mcp-server-motherduck --db-path :memory: --result-format duckboxduckbox keeps the datatype info with limited output, or --result-format text if you dont need column headers. The maintainer confirmed the underlying issue was the pandas dependency and shipped 0.5.1, which he said should solve it.
Source: https://github.com/motherduckdb/mcp-server-motherduck/issues/19
Source: https://github.com/motherduckdb/mcp-server-motherduck/issues/19