Pairing Tools
Pair and disconnect MCP sessions with UI sessions for real-time collaboration between AI agents and human operators. 2 tools in this category.
session.pair
Pair the current MCP session with a browser UI session. This enables real-time preview synchronization — when the agent drafts content, the paired UI updates live.
Roles: ALL_ROLES
| Field | Type | Required | Description |
|---|---|---|---|
uiSessionId | string | Yes | Browser session ID (from the UI’s pairing code) |
capabilities | string[] | No | Requested capabilities (e.g., preview, edit, approve) |
{
"tool": "session.pair",
"input": {
"uiSessionId": "ui_sess_abc123",
"capabilities": ["preview", "edit"]
}
}session.disconnect
Disconnect the current MCP session from a paired UI session.
Roles: ALL_ROLES
| Field | Type | Required | Description |
|---|---|---|---|
uiSessionId | string | No | Specific session to disconnect (disconnects all if omitted) |
{
"tool": "session.disconnect",
"input": {
"uiSessionId": "ui_sess_abc123"
}
}