Server-Sent Events proxy endpoint for real-time streaming communication with third-party servers.
This endpoint provides dedicated SSE streaming capabilities separate from the MCP protocol, allowing for custom event streaming and real-time data flows.
text/event-stream communicationx-mcp-session-id header for session tracking/servers/{server_id}/connectJWT token obtained through Auth0 OAuth 2.0 flow with PKCE.
The token should be included in the Authorization header:
Authorization: Bearer <your-jwt-token>
Use the Barndoor SDK's loginInteractive() function to obtain tokens automatically.
MCP session identifier for request tracking
MCP server name identifier
Optional request payload for SSE initialization
SSE event stream
Server-Sent Events stream for real-time communication.
Events follow the SSE format with optional event types and data payloads.
Example events:
event: connected
data: {"status": "ready", "timestamp": "2024-01-01T00:00:00Z"}
event: data_update
data: {"type": "Account", "id": "123", "changes": {...}}
event: error
data: {"error": "rate_limit", "message": "Rate limit exceeded"}