sc_boot
Start the SuperCollider audio server to enable sound synthesis. Required before generating any audio through the MCP server.
Instructions
Boot the SuperCollider audio server. Must be called before any sound synthesis.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:244-264 (handler)The handler function for the 'sc_boot' tool. It checks if the SuperCollider server is already booted, boots it if not using scServer.boot(), sets synthDefsLoaded to true, and returns a success message.case 'sc_boot': { if (scServer.getBooted()) { return { content: [{ type: 'text', text: 'SuperCollider server is already running' }], }; } await scServer.boot(); // Mark as loaded - we'll use inline synths instead of pre-loaded SynthDefs synthDefsLoaded = true; return { content: [ { type: 'text', text: 'SuperCollider server booted successfully. All synth definitions loaded.', }, ], }; }
- src/index.ts:44-51 (registration)Registration of the 'sc_boot' tool in the MCP tools list, including its name, description, and input schema (no parameters required).{ name: 'sc_boot', description: 'Boot the SuperCollider audio server. Must be called before any sound synthesis.', inputSchema: { type: 'object', properties: {}, }, },
- src/index.ts:47-50 (schema)Input schema for the 'sc_boot' tool, defining an empty object (no input parameters).inputSchema: { type: 'object', properties: {}, },