A favicon of SuperCollider Synth Executor

SuperCollider Synth Executor

Execute SuperCollider synths seamlessly using the SuperCollider programming language through an MCP server interface. Integrate audio synthesis capabilities into your LLM applications on macOS with Apple Silicon. Simplify sound generation workflows by leveraging supercolliderjs within the MCP framework.

Installation

Installing for Claude Desktop

Option 1: One-Command Installation

npx mcpbar@latest install Synohara/supercollider-mcp -c claude

This command will automatically install and configure the SuperCollider Synth Executor MCP server for your selected client.

Option 2: Manual Configuration

Run the command below to open your configuration file:

npx mcpbar@latest edit -c claude

After opening your configuration file, copy and paste this configuration:

View JSON configuration
{
  "mcpServers": {
    "SuperCollider Synth Executor": {
      "command": "npx",
      "args": [
        "-y",
        "@makotyo/mcp-supercollider"
      ]
    }
  }
}

SuperCollider MCP Server

The SuperCollider MCP Server is a Model Context Protocol (MCP) server for the SuperCollider programming language that allows to execute synth using supercolliderjs.

Prerequisites

  1. Install SuperCollider on your machine.
  2. Node.js and npm should be installed on your machine. You can download it from Node.js official website.

Compatibility

This project has been tested and confirmed to work only on macOS with Apple Silicon (M1) processors. Compatibility with other operating systems or processor architectures has not been verified.

Installation

Usage with Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-supercollider": {
      "command": [
        "npx", 
        "-y",
        "@makotyo/mcp-supercollider"]
    }
  }
}

Usage with VS Code

Add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P and typing Preferences: Open User Settings (JSON).

Optionally, you can add it to a file called .vscode/mcp.json in your workspace. This will allow you to share the configuration with others.

Note that the mcp key is not needed in the .vscode/mcp.json file.

{
  "mcp": {
    "servers": {
      "mcp-supercollider": {
        "command": "npx",
        "args": [
          "-y",
          "@makotyo/mcp-supercollider"
        ]
      }
    }
  }
}
Share:
Details:
  • Stars


    4
  • Forks


    2
  • Last commit


    4 days ago
  • Repository age


    2 months
  • License


    MIT
View Repository

Auto-fetched from GitHub .

MCP servers similar to SuperCollider Synth Executor:

 

 
 
  • Stars


  • Forks


  • Last commit


 

 
 
  • Stars


  • Forks


  • Last commit


 

 
 
  • Stars


  • Forks


  • Last commit


SuperCollider Synth Executor: MCP Server – MCP.Bar