Docsbook agent status
docsbook_agent_statusREAD$0.008 / callWhat the Docsbook agent is doing on a job, and what came of it — status, progress, the exchange so far, and the result once it is done. needs_owner in the result means it asked you something and is waiting: answer with docsbook_agent_reply. It reports what it CHANGED and what that should move; it does not hand back the method it used.
The id docsbook_agent returned.
Call it#
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "docsbook_agent_status",
"arguments": {
"task_id": "<task_id>"
}
}
}curl -X POST 'https://docsbook.io/api/mcp/server' \
-H 'Authorization: Bearer dbk_YOUR_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":"docsbook_agent_status","arguments":{"task_id":"<task_id>"}}}'Try it over REST#
The same tool is callable as a plain HTTP request, no MCP client required. It runs on the same server, at the same price.
/api/v1/docsbook_agent_statusYour API key, sent as Authorization: Bearer dbk_YOUR_API_KEY.Sent as the Authorization header. Your key is used only by your browser for this request — it is never sent to Docsbook or stored.
The id docsbook_agent returned.
curl 'https://docsbook.io/api/v1/docsbook_agent_status?task_id=%3Ctask_id%3E' \
-H 'Authorization: Bearer dbk_YOUR_API_KEY'