start_recording
Begin recording video and audio in OBS Studio to capture live content or create video files.
Instructions
Start OBS recording.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- obs-mcp-server.js:400-403 (handler)Handler implementation for the 'start_recording' tool, which calls the OBS 'StartRecord' command.
case "start_recording": { await obs.call("StartRecord"); return ok({ recording: true }); } - obs-mcp-server.js:78-82 (registration)Tool registration for 'start_recording'.
{ name: "start_recording", description: "Start OBS recording.", inputSchema: { type: "object", properties: {} }, },