Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions integrations/mcp/mcp-server.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</Accordion>

<Accordion title="ChatGPT" icon="comment">
ChatGPT supports MCP servers through Developer Mode, available on Pro, Team, Enterprise, and Edu plans.

Check warning on line 42 in integrations/mcp/mcp-server.mdx

View check run for this annotation

Mintlify / Mintlify Validation (relevanceai) - vale-spellcheck

integrations/mcp/mcp-server.mdx#L42

Did you really mean 'Edu'?

1. Open ChatGPT **Settings**
2. Go to **Connectors** → **Advanced** → **Developer Mode**
Expand Down Expand Up @@ -275,6 +275,26 @@
</Step>
</Steps>

### Cancelling executions

Three tools are available to stop in-progress tasks:

<AccordionGroup>
<Accordion title="relevance_cancel_agent_task">
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.
</Accordion>

<Accordion title="relevance_cancel_workforce_task">
Cancels a running workforce task. Pass the `task_id` of the workforce task to stop.
</Accordion>

<Accordion title="relevance_cancel_tool_run">
Cancels a currently-running tool execution. Pass the `studio_run_id` of the tool run to stop.
</Accordion>
</AccordionGroup>

---

## Troubleshooting
Expand Down
Loading