Skip to Content

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

FieldTypeRequiredDescription
uiSessionIdstringYesBrowser session ID (from the UI’s pairing code)
capabilitiesstring[]NoRequested 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

FieldTypeRequiredDescription
uiSessionIdstringNoSpecific session to disconnect (disconnects all if omitted)
{ "tool": "session.disconnect", "input": { "uiSessionId": "ui_sess_abc123" } }