-
Notifications
You must be signed in to change notification settings - Fork 0
Execution Modes
nikolaout edited this page Apr 9, 2026
·
1 revision
Async-capable tools support:
autosyncasync
The server chooses the best mode.
Typical behavior:
- small requests stay sync
- larger, batched, or heavier requests may switch to async
The tool waits for the direct response and returns data immediately.
Use this when:
- the request is small
- you want a direct answer
- deterministic immediate output is preferred
The tool submits a request and returns async metadata.
Use this when:
- the request is large
- you expect longer processing
- you want better reliability for heavier endpoints
- Call a tool with
execution_mode: "async"orexecution_mode: "auto". - Receive async metadata with request ID.
- Poll status with
requests_get. - Use
requests_listto inspect running or finished requests. - Use
requests_deleteif you want to stop a request.
Example:
{
"query": ["outscraper.com"],
"execution_mode": "async"
}Official links: