DOCS/TROUBLESHOOTING/EVERYTHINGPROVIDER TIMEOUT
EverythingProvider timeout
EverythingProvider timeout means the MCP provider did not return a response inside the client timeout window.
Timeouts can be caused by slow upstream APIs, cold starts, network instability, or strict proxy limits.
Typical root causes
- long-running tool calls without streaming progress
- upstream dependency latency spikes
- region mismatch between client and server
- proxy timeout shorter than tool execution time
- retry storms from parallel agent calls
Immediate recovery steps
- Retry a lightweight tool call first
- Check status for platform health
- Reduce payload size and test again
- Increase timeout where your client allows it
- Add request-level logging to measure slow segments
Server-side hardening
- set explicit upstream timeouts per dependency
- use circuit breakers for flaky APIs
- cache deterministic responses when possible
- return early with partial data for long workflows
IDE and client tuning
- avoid running many heavy tools simultaneously
- stagger retries with backoff
- run endpoint probe in Playground before publish
Verify the fix
- run three consecutive probes in Playground
- compare latency percentile, not one-off latency
- confirm no timeout errors in IDE logs
AgenticMarket