Appearance
Approvals
Human sign-off in front of sensitive work.
5 tools — 2 read, 3 write.
| Tool | What it does | |
|---|---|---|
approve | write | Approve a pending approval. |
create_approval | write | Request a human approval for an action. |
get_approval | read | Get full details of an approval by ID, including status, assignee, resolution, and context. |
list_approvals | read | List approvals in the org, optionally filtered by status, assignee, or requester. |
reject | write | Reject a pending approval. |
Calling these
Over MCP, find one with search_tools, then run it with execute_tool. Over REST, POST /api/capabilities/<tool> with the arguments as the JSON body. Either way, fetch the input schema for the tool you're about to call rather than guessing — get_tool_schema over MCP, or GET /api/capabilities?name=<tool> over REST.
See How the API works for auth, errors and the shared envelope.