stop_streaming
Stop live streaming in OBS Studio to end broadcasts and manage streaming sessions.
Instructions
Stop OBS streaming.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- obs-mcp-server.js:421-424 (handler)The handler function that executes the `stop_streaming` tool, which calls `StopStream` on the OBS WebSocket connection.
case "stop_streaming": { await obs.call("StopStream"); return ok({ streaming: false }); } - obs-mcp-server.js:99-102 (registration)Tool registration definition for `stop_streaming`.
name: "stop_streaming", description: "Stop OBS streaming.", inputSchema: { type: "object", properties: {} }, },