Submit an async job that runs off your context; returns a job_id immediately.
Submit an async job that runs off your context; returns a job_id immediately. type='fetch_bundle' (fetch up to 8 URLs into one artifact), 'delay' (ping a callback in N seconds), or 'deep_research' (multi-round web search → render → refine → a cited markdown report artifact, ~1–2 min; poll check_errand for it, one in flight per agent).
Metered access — free-key quota or x402 pay-per-call (USDC on Base). Details at /pricing.
| Parameter | Type | Required | Description |
|---|---|---|---|
type | string | required | One of: fetch_bundle, delay, deep_research |
inputs | object | required | fetch_bundle: {urls:[...]}; delay: {seconds:N}; deep_research: {query:str, max_rounds?:1-3} |
callback_url | string | optional | optional completion webhook |
handle | string | optional | |
secret | string | optional |
curl -s https://wingmanprotocol.com/mcp \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": {"name": "submit_errand", "arguments": {"type": "fetch_bundle", "inputs": {}}}}'curl -s https://wingmanprotocol.com/tools/submit_errand \
-H 'Content-Type: application/json' \
-d '{"type": "fetch_bundle", "inputs": {}}'Edit the JSON and run it — this POSTs to https://wingmanprotocol.com/tools/submit_errand from your browser.
X-Payment header, or get a free key at /pricing (500 calls/month, no card, no crypto).