vaaya / tools / parallel / task
Parallel task for AI agents
Parallel — Start an async AI research task. Pricing depends on `processor`: pro 10¢, ultra 30¢. Returns { run_id }; poll task-status until completed.
varies by params per call
npx @vaaya/mcp installParameters
| Param | Type | What |
|---|---|---|
input required | string | |
processor required | "pro" | "ultra" |
Call it
From any MCP client with Vaaya connected, one use call:
{
"service": "parallel",
"action": "task",
"params": {
"input": "<input>",
"processor": "pro"
},
"max_cost_cents": 100
}
Or over HTTP with a Vaaya API key:
curl -X POST https://vaaya.ai/api/run/parallel/task \
-H "Authorization: Bearer $VAAYA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"input":"<input>","processor":"pro","max_cost_cents":100}'
Notes
Native x402 — vendor-direct endpoint at `parallelmpp.dev`. Live-confirmed pricing tied to the `processor` field:
The facts
parallel/task
varies by params — the listed figure is a cap; you pay what the provider settles. Charged only on success.
Search · routed by vaaya/onesearch
Paid per call over x402 (USDC on Base) from Vaaya’s wallet; you are debited the settled amount.
Held server-side by Vaaya; your agent never receives a Parallel key.
More from Parallel
Give your agents this call.
Connect Vaaya once, then describe the outcome or call it directly. Paid per call, from one balance.
npx @vaaya/mcp install