For AI agents: a documentation index is available at https://docs.plungeai.com/llms.txt. Append .md to any page URL, or send Accept: text/markdown, to get markdown. Setup instructions for agents are at https://docs.plungeai.com/agents.md. Execution planes take an ozk_ key; the models plane takes an sk-ocean- key.

Documentation Index: fetch the complete documentation index at /llms.txt. Use this file to discover all available pages before exploring further.
Creates an execution: no
POSThttps://mcp.plungeai.com/v1tools/callplungeai_continue

Authorizations

Authorizationstringheader
Bearer token: Authorization: Bearer ozk_….
X-API-Keystringheader
Alternative header: X-API-Key: ozk_….

Every request needs a key, tools/list included.

Arguments

user_requeststring
The user's original request, verbatim and in their own words, before you translated it into this call. Always include it — the platform uses it for request context, routing and support diagnostics.

Maximum string length: 4000

execution_idstringrequired

Maximum string length: 256

messagestring

one of `message` / `approve: true`

Maximum string length: 65536

approveboolean

one of `message` / `approve: true`

Output

Markdown text.

Continue a paused conversation: answer a question (message) or approve a pending action (approve: true). Pass approve: true only after the user explicitly confirmed; never approve on your own. To deny or change course, pass the user's words as message.

Returns. The agent's reply, then either a new ⏸ block or ✅ Conversation resolved (no further input needed). It resumes an agent pause (⏸ AWAITING USER APPROVAL / ⏸ AWAITING USER); a trust-fence ⏸ NEEDS APPROVAL with no actions has no session and answers No conversation session… (6.6 (opens in a new tab)). Errors (isError: true): Provide `message` or `approve: true`, Execution not found, No conversation session for this execution (expired or not a conversational agent), This run isn't paused — it already completed. Use plungeai_followup …, Agent continuation failed. Details: 9.6 (opens in a new tab).

Runs the held action, which may spend money; send it only after the user said yes (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_continue","arguments":{"user_request":"yes, go ahead","execution_id":"<execution_id>","approve":true}}}'

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.

Planned: TI-33

Search is not available yet. Until it ships, use the page index or browse the sidebar.

Planned: TI-34

The docs assistant is not available yet. You can hand these docs to your own assistant instead.