MCP Catalogs
Home

mcp-music-studio vs everything

Side-by-side comparison to help you pick between these two MCP servers.

mcp-music-studio
by linxule
everything
by modelcontextprotocol
Stars★ 45★ 85,748
30d uses
Score4577
Official
Categories
MediaDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

mcp-music-studio · Summary

MCP music studio with ABC notation composition and Strudel live coding, supporting 30+ instruments and interactive sheet music rendering.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

mcp-music-studio · Use cases

  • Compose music using ABC notation with visual feedback and multiple instrument choices
  • Live-code music patterns with Strudel and experiment with effects in real-time
  • Create educational content with interactive music guides and documentation search

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

mcp-music-studio · Install

Quick Start (No Install Required)

Paste this URL into any MCP client that supports remote servers:

https://mcp-music-studio.linxule.workers.dev/mcp

Local Install

# Claude Code
claude mcp add --transport http music-studio https://mcp-music-studio.linxule.workers.dev/mcp

# JSON Config (Claude Desktop, Cursor, Windsurf, etc.)
{
  "mcpServers": {
    "music-studio": {
      "command": "npx",
      "args": ["-y", "mcp-music-studio", "--stdio"]
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.