MCP Catalogs
Home

mcp-1panel vs memory

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

mcp-1panel
by 1Panel-dev
memory
by modelcontextprotocol
Stars★ 147★ 85,748
30d uses
Score4577
Official
Categories
Ops & InfraDeveloper ToolsProductivity
Knowledge GraphAI / LLM ToolsProductivity
LanguageGoTypeScript
Last commit7 mo agothis month

mcp-1panel · Summary

MCP server for 1Panel, providing tools for website, database, and server management.

memory · Summary

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

mcp-1panel · Use cases

  • AI assistants managing web servers and creating websites through natural language
  • Automating server administration tasks using AI-powered prompts
  • Monitoring system resources and website performance via MCP-integrated AI tools

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

mcp-1panel · Install

Installation

Prerequisites

  • Go 1.23.0 or higher
  • Existing 1Panel installation

Build from Source

git clone https://github.com/1Panel-dev/mcp-1panel.git
cd mcp-1panel
make build

Move ./build/mcp-1panel to your system PATH.

Install using go install

go install github.com/1Panel-dev/mcp-1panel@latest

Configuration for Cursor/Windsurf

{
  "mcpServers": {
    "mcp-1panel": {
      "command": "mcp-1panel",
      "env": {
        "PANEL_ACCESS_TOKEN": "<your 1Panel access token>",
        "PANEL_HOST": "http://localhost:8080"
      }
    }
  }
}

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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.