diff --git a/integrations/mcp/mcp-server.mdx b/integrations/mcp/mcp-server.mdx index d1e19f64..d317acc7 100644 --- a/integrations/mcp/mcp-server.mdx +++ b/integrations/mcp/mcp-server.mdx @@ -275,6 +275,26 @@ When triggering agents via MCP, you have two execution modes available depending +### Cancelling executions + +Three tools are available to stop in-progress tasks: + + + + Cancels a running agent task. Pass the `conversation_id` returned by `relevance_trigger_agent_async` to identify which task to stop. + + Cancellation is not instant — the current step finishes before the task is stopped. There is no hard-stop mid-step. + + + + Cancels a running workforce task. Pass the `task_id` of the workforce task to stop. + + + + Cancels a currently-running tool execution. Pass the `studio_run_id` of the tool run to stop. + + + --- ## Troubleshooting