supercollider-mcp

by Synohara
MIT License
3
1
  • Apple

synth-execute

Generate and execute SynthDef code to produce sound in SuperCollider. Specify the synth name, code within {}, and optional duration to control playback.

Instructions

SynthDefのコードを生成し、そのコードを実行して音を出します。 コードは{}でくくるようにしてください。

Input Schema

NameRequiredDescriptionDefault
durationNo再生時間(ミリ秒)。デフォルトは5000(5秒)
synthYes再生するシンセの情報

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "duration": { "description": "再生時間(ミリ秒)。デフォルトは5000(5秒)", "type": "number" }, "synth": { "additionalProperties": false, "description": "再生するシンセの情報", "properties": { "code": { "description": "シンセのコード", "type": "string" }, "name": { "description": "シンセの名前", "type": "string" } }, "required": [ "name", "code" ], "type": "object" } }, "required": [ "synth" ], "type": "object" }

You must be authenticated.

Other Tools from supercollider-mcp

Related Tools

    ID: tsx93e6vgi