Home / MCP Tools / Submit Errand
Live MCP toolerrands

Submit Errand

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.

Parameters

ParameterTypeRequiredDescription
typestringrequiredOne of: fetch_bundle, delay, deep_research
inputsobjectrequiredfetch_bundle: {urls:[...]}; delay: {seconds:N}; deep_research: {query:str, max_rounds?:1-3}
callback_urlstringoptionaloptional completion webhook
handlestringoptional
secretstringoptional

Call it over MCP (JSON-RPC 2.0)

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": {}}}}'

Or plain HTTP

curl -s https://wingmanprotocol.com/tools/submit_errand \
  -H 'Content-Type: application/json' \
  -d '{"type": "fetch_bundle", "inputs": {}}'

Try it live

Edit the JSON and run it — this POSTs to https://wingmanprotocol.com/tools/submit_errand from your browser.

Related tools in Errands

errands
Book Appointment
Lead-gen/CRM: record an appointment in your pipeline (a DB row — no external calendar).
errands
Check Errand
Check an errand's status / collect its result + artifact_url.
errands
Confirm Delivery
After buying on the Exchange, record your verdict on what you received: 'confirmed' (the delivery matched the listing)…