Skip to main content
Glama

sc_record_stop

Stop audio recording in SuperCollider MCP Server to complete sound capture sessions initiated through natural language commands.

Instructions

Stop recording audio

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler for sc_record_stop tool: checks if server is booted, executes SuperCollider code to stop recording, returns success message.
    case 'sc_record_stop': { if (!scServer.getBooted()) { return { content: [{ type: 'text', text: 'Error: SuperCollider server is not running.' }], isError: true, }; } await scServer.executeCode('Server.default.stopRecording;'); return { content: [{ type: 'text', text: 'Recording stopped' }], }; }
  • src/index.ts:181-188 (registration)
    Tool registration in the tools array, including name, description, and empty input schema (no parameters required).
    { name: 'sc_record_stop', description: 'Stop recording audio', inputSchema: { type: 'object', properties: {}, }, },
  • Input schema definition for sc_record_stop: accepts an empty object (no arguments).
    inputSchema: { type: 'object', properties: {}, },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/BradA1878/mcp-wave'

If you have feedback or need assistance with the MCP directory API, please join our Discord server