Developer Troubleshooting EngineInstant OS Fixes

MCP Error Decoder

Search exact error strings and stack traces from Claude Desktop, Cursor, and OpenAI Codex CLI. Inspect root causes and copy verified terminal fixes.

Scan Config in Linter
Category:
Performance & DatabaseMedium

Tool call timed out after 60000ms

Symptom

Long-running database queries, video processing, or web scraping tool calls abort with a timeout error.

Root Cause

Default client timeouts limit tool execution duration to 60 seconds before concluding the stdio process is unresponsive.

Remediation & Quick Fix

Split heavy queries into paginated chunks or implement asynchronous polling jobs where the tool returns a job ID immediately.

OS Diagnostic Commands:
mac
# Check query plan latency before running in MCP:
psql $DATABASE_URL -c "EXPLAIN ANALYZE SELECT ...;"
windows
# Check query plan latency:
psql.exe $env:DATABASE_URL -c "EXPLAIN ANALYZE SELECT ...;"
linux
# Check query plan latency:
psql $DATABASE_URL -c "EXPLAIN ANALYZE SELECT ...;"
Verified Configuration Example:
// In your MCP server tool handler:
// Return job token immediately rather than hanging for 120 seconds
return {
  content: [{ type: "text", text: "Job submitted with ID: task_9821. Call check_status to poll." }]
};