MCP Catalogs
Home

everything vs streamdeck-mcp

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

everything
by modelcontextprotocol
streamdeck-mcp
by verygoodplugins
Stars★ 85,748★ 13
30d uses
Score7744
Official
Categories
Developer ToolsAI / LLM ToolsOther
ProductivityDeveloper ToolsMedia
LanguageTypeScriptPython
Last committhis monththis month

everything · Summary

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

streamdeck-mcp · Summary

MCP server for Elgato Stream Deck control, letting AI create custom profiles with buttons, icons, and scripts.

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

streamdeck-mcp · Use cases

  • Create custom Slack control boards with channel jump buttons and status toggles
  • Build themed Home Assistant dashboards for specific areas
  • Generate OBS control panels based on actual scenes and audio inputs

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

streamdeck-mcp · Install

Installation

Install with uvx and configure in your MCP client:

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "streamdeck": {
      "command": "uvx",
      "args": ["streamdeck-mcp"]
    }
  }
}

Claude Code

claude mcp add streamdeck -- uvx streamdeck-mcp

Other clients

Add to your MCP configuration:

{
  "mcpServers": {
    "streamdeck": {
      "command": "uvx",
      "args": ["streamdeck-mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.