Skip to main content
GET
/
dispatch
/
tasks
/
{task_id}
/
export
/
mcp
Export as MCP tools
curl --request GET \
  --url https://api.parse.bot/dispatch/tasks/{task_id}/export/mcp \
  --header 'X-API-Key: <api-key>'
{
  "tools": [
    {
      "name": "<string>",
      "description": "<string>",
      "inputSchema": {},
      "annotations": {}
    }
  ],
  "server_info": {
    "name": "<string>",
    "description": "<string>",
    "base_url": "<string>",
    "auth_header": "<string>"
  }
}

Authorizations

X-API-Key
string
header
required

API key for programmatic access. Get yours at https://parse.bot or via POST /account/api-key with JWT auth.

Path Parameters

task_id
string
required

Response

200 - application/json

MCP tool definitions

tools
object[]
server_info
object