Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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: {}, }, },
  • Input schema for the 'sc_boot' tool, defining an empty object (no input parameters).
    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