start_streaming
Begin live streaming from OBS Studio to broadcast content to your audience.
Instructions
Start OBS streaming.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- obs-mcp-server.js:416-419 (handler)The handler for the 'start_streaming' tool, which calls the OBS 'StartStream' method.
case "start_streaming": { await obs.call("StartStream"); return ok({ streaming: true }); } - obs-mcp-server.js:93-97 (registration)The registration of the 'start_streaming' tool with its description and schema.
{ name: "start_streaming", description: "Start OBS streaming.", inputSchema: { type: "object", properties: {} }, },