MCP Catalogs
Home

memory vs streamdeck-mcp

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

memory
by modelcontextprotocol
streamdeck-mcp
by verygoodplugins
Stars★ 85,748★ 13
30d uses
Score7744
Official
Categories
Knowledge GraphAI / LLM ToolsProductivity
ProductivityDeveloper ToolsMedia
LanguageTypeScriptPython
Last committhis monththis month

memory · Summary

An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.

streamdeck-mcp · Summary

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

memory · Use cases

  • Personalizing AI assistant interactions by remembering user preferences, history, and relationships
  • Building context-aware chat applications that maintain conversation history
  • Creating knowledge bases that persist across AI model sessions

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

memory · Install

Installation

Claude Desktop

Add to your claude_desktop_config.json:

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

VS Code

Use one-click installation buttons or manually configure in .vscode/mcp.json:

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

Docker

{
  "mcpServers": {
    "memory": {
      "command": "docker",
      "args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
    }
  }
}

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.