Installation issues
”qwed-mcp: command not found”
Cause: Package not in PATH Solutions:- Install globally:
- Check installation:
- Use full path in config:
“ModuleNotFoundError: No module named ‘sympy’”
Cause: QWED SDK dependencies not installed Solution:Claude Desktop issues
Server not appearing in Claude
Check:- Config file location:
- Windows:
%APPDATA%\Claude\claude_desktop_config.json - macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
- Valid JSON:
- Restart Claude Desktop (completely quit and reopen)
“Failed to start MCP server”
Debug steps:- Test manually:
- Check logs:
- Enable debug logging:
Tool errors
”Code execution is disabled”
Cause: TheQWED_MCP_TRUSTED_CODE_EXECUTION environment variable is not set.
Solution: Set the variable in your MCP config:
“Unknown tool: verify_math” (or other verify_* tools)
Cause: You are running QWED-MCP v0.2.0 or later, which replaced all individualverify_* tools with a single execute_python_code tool.
Solution: Tell Claude: “The verify_* tools have been removed. Use execute_python_code to write and run a Python verification script.”
See the migration guide for the full tool mapping.
”Execution timed out after 30 seconds”
Cause: The Python script exceeded the execution time limit. Solutions:- Increase timeout:
- Optimize the script:
- Break complex computations into smaller steps
- Avoid infinite loops or very large data processing
ModuleNotFoundError in script output
Cause: The QWED SDK package used in the script is not installed. Solution: Install the required package:Migration issues (v0.1.x to v0.2.0)
Claude keeps trying to call verify_math
Cause: Claude’s context may still reference old tool names from previous conversations. Solutions:- Start a new conversation
- Explicitly tell Claude: “Use execute_python_code instead of verify_math. Write a Python script that imports sympy to verify the calculation.”
Scripts fail with import errors
Cause: The QWED SDK packages are not installed alongside qwed-mcp. Solution:Getting help
- GitHub Issues: github.com/QWED-AI/qwed-mcp/issues
- Documentation: docs.qwedai.com/mcp
- MCP Protocol Docs: modelcontextprotocol.io