Start a Bridge session
Pick a crew agent, then start the session. Your browser will ask for camera and microphone access.
Sign in to SeaSuite
Bridge needs your Multica session cookie to load workspaces and agents.
Sign in to SeaSuite
Soft cue ready
Transcript local
Commitments panel
Workspace: —
In-call shell
Camera and microphone engage when you start a session
Crew
Camera & mic idle
Transcript
Commitments
Chat
Agent API
REST + MCP endpoints for Bridge sessions, participants, and commitments. Stub until adapter APIs ship.
Connection Info
Base URL
https://ss-bridge.ocuss.app
Authentication
Multica cookie (multica_auth). /api/me bootstraps workspace; workspace query optional on agents.
GET
/api/sessions
List Bridge sessions for a workspace.
Parameters:
workspace (required) Slug or UUID
POST
/api/sessions
Create a session and mint LiveKit join credentials when available.
Body (JSON):
title optional session titleagent_id crew agent UUIDExample:
curl -X POST "https://ss-bridge.ocuss.app/api/sessions?workspace=$MULTICA_WORKSPACE_ID" \
-H "Content-Type: application/json" \
-d '{"title":"Weekly sync","agent_id":"$AGENT_ID"}'
GET
/api/sessions/{id}/token
Short-lived LiveKit join token for the current participant.
GET
/api/sessions/{id}/commitments
List commitments captured during a session.
POST
/api/sessions/{id}/commitments
Propose a commitment (HITL approval path on write-capable surfaces).
MCP Tools (planned)
bridge_list_sessions— list sessions in workspacebridge_get_session— session detail + participantsbridge_list_commitments— read commitments (no silent writes)
Quick Reference
# Health curl -sS "https://ss-bridge.ocuss.app/health" # List sessions curl -sS "https://ss-bridge.ocuss.app/api/sessions?workspace=$MULTICA_WORKSPACE_ID"