stop_recording
Stop recording in OBS Studio to end video capture sessions and save media files.
Instructions
Stop OBS recording.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- obs-mcp-server.js:405-408 (handler)The tool handler for "stop_recording" which calls "StopRecord" via the OBS websocket and returns the result.
case "stop_recording": { const result = await obs.call("StopRecord"); return ok({ recording: false, output_path: result.outputPath ?? null }); } - obs-mcp-server.js:84-87 (registration)Registration of the "stop_recording" tool in the TOOLS array.
name: "stop_recording", description: "Stop OBS recording.", inputSchema: { type: "object", properties: {} }, },