toggle_recording
Start or stop recording in OBS Studio to capture your screen or streaming content.
Instructions
Toggle OBS recording on/off.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- obs-mcp-server.js:410-414 (handler)The handler implementation for the toggle_recording tool, which calls OBS ToggleRecord and then fetches the updated recording status.
case "toggle_recording": { await obs.call("ToggleRecord"); const status = await obs.call("GetRecordStatus"); return ok({ recording: status.outputActive }); } - obs-mcp-server.js:88-92 (registration)The tool registration for toggle_recording.
{ name: "toggle_recording", description: "Toggle OBS recording on/off.", inputSchema: { type: "object", properties: {} }, },