Bridge Manage Tool
bridge_manageManage the WebSocket bridge that connects cloud experiments to private endpoints on self-hosted runners. Check status, list endpoints, toggle visibility, or disconnect sessions.
Instructions
FleetQ Bridge — a WebSocket relay that lets cloud experiments reach private endpoints on a self-hosted runner (laptop, on-prem VPS): local Ollama instances, internal MCP servers, on-prem APIs. All actions operate on the team's currently-registered bridge.
Actions:
status (read) — connection state, last heartbeat, registered endpoint count.
endpoint_list (read) — local LLM agents + MCP servers announced by the bridge.
endpoint_toggle (write) — endpoint_id, enabled (bool). Flips visibility to cloud experiments without redeploying the bridge.
disconnect (DESTRUCTIVE) — terminates the active bridge session; the runner must re-register before agents can reach private endpoints again.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Action to perform: status, endpoint_list, endpoint_toggle, disconnect | |
| deadline_ms | No | Optional: max wall-clock time (ms) the tool may spend. If exceeded during the call, returns a DEADLINE_EXCEEDED error. Minimum 100 ms. Leave unset for no deadline. | |
| type | No | Filter by endpoint type. Defaults to all. | |
| endpoint_id | Yes | The ID of the endpoint to toggle (from bridge_endpoint_list). | |
| enabled | No | Whether to enable (true) or disable (false) the endpoint. | |
| connection_id | No | UUID of a specific bridge connection to disconnect. Omit to disconnect all. |