Tools
plungeai_run_mission
Run a bounded autonomous agent mission (loop agent): give a goal, optional tool fence and iteration cap.
Authorizations
Authorization: Bearer ozk_….X-API-Key: ozk_….Every request needs a key, tools/list included.
Arguments
Maximum string length: 4000
Maximum string length: 65536
Default: You are a capable autonomous agent. Achieve the goal thoroughly and cite sources.
Maximum string length: 65536
Default: ["web_search", "web_fetch", "task_complete"]
Maximum array length: 50
Default: 8
Required range: 1 <= x <= 50
Maximum array length: 20
Maximum string length: 256
Maximum array length: 20
Available options: sync, async
Default: async
Output
Available options: ok, needs_input, needs_connection, needs_api_key, needs_approval, unavailable, error
Run a bounded autonomous agent mission (loop agent): give a goal, optional tool fence and iteration cap. Recalls and writes long-term memory automatically. Defaults to async — poll plungeai_get_workflow_status. Always answers with a structured outcome (never a raw error) — follow the remediation instead of retrying the identical call.
Run a bounded autonomous agent mission (a loop agent): a goal, an optional tool fence and an iteration cap. Recalls and writes long-term memory automatically. Defaults to async: poll plungeai_get_workflow_status. Always answers with a structured outcome, never a raw error: follow the remediation instead of retrying the identical call.
Returns. Async: ok with Started mission `<id>` (async). … and the execution id. Sync: ok with the mission's output (also when it stopped at max_iterations: a sync mission never reports incomplete, 7.7 (opens in a new tab)), needs_approval / needs_input when it pauses, or a classified outcome on failure.
Runs an agent loop and costs credits (not verified here):
curl -s https://mcp.plungeai.com/v1 \
-H "Authorization: Bearer $PLUNGE_API_KEY" \
-H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"plungeai_run_mission","arguments":{"user_request":"what is notable about Sun Valley, Idaho?","goal":"Three sourced bullets on what is notable about Sun Valley, Idaho.","max_iterations":6,"success_criteria":["three bullets","a source URL per bullet"]}}}'One parameter recurs across the tools: user_request (on every tool: a string of up to 4,000 characters, optional; clients should always send it). It is described once in Recurring parameters on the MCP overview.