SuperCollider MCP Server
An MCP server for the SuperCollider programming language that executes synths using supercolliderjs.
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
- Install SuperCollider on your machine.
- 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"
]
}
}
}
}
Related Servers
MATLAB MCP Server
Integrates MATLAB with AI to execute code, generate scripts from natural language, and access documentation.
Docker Hub README MCP Server
Search for Docker images and retrieve their READMEs and metadata from Docker Hub.
Remote MCP Server (Authless)
An example of a remote MCP server deployable on Cloudflare Workers without authentication.
Bruno MCP Server
Execute Bruno collections using the Bruno CLI, with support for environment files and detailed test results.
Azure DevOps
Integrate with Azure DevOps services to manage work items, repositories, and pipelines.
CodeGraph
Generates and queries a graph representation of a codebase.
JetBrains
Work on your code with JetBrains IDEs
Tabby-MCP-Server
A Tabby plugin implementing an MCP server for AI-powered terminal control and automation.
UnrealMCP Plugin
An unofficial MCP server plugin for remote control of Unreal Engine using AI tools.
MCP-Typescribe
Answers questions about TypeScript APIs using TypeDoc JSON documentation.