MCP Catalogs
Home

claudeus-wp-mcp vs memory

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

claudeus-wp-mcp
by deus-h
memory
by modelcontextprotocol
Stars★ 142★ 85,748
30d uses
Score5077
Official
Categories
Developer ToolsProductivityOther
Knowledge GraphAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

claudeus-wp-mcp · Summary

A comprehensive MCP server with 145 WordPress management tools for content, media, users, and site operations.

memory · Summary

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

claudeus-wp-mcp · Use cases

  • Automate WordPress content creation and management workflows
  • Monitor and diagnose site health issues proactively
  • Integrate WordPress operations with Claude AI for intelligent site management

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

claudeus-wp-mcp · Install

Installation

Via NPM (Recommended):

npm install -g claudeus-wp-mcp

For Development:

git clone https://github.com/deus-h/claudeus-wp-mcp
cd claudeus-wp-mcp
pnpm install
pnpm build

Configuration

  1. Create a wp-sites.json file with your WordPress sites configuration:
{
  "default_test": {
    "URL": "https://your-site.com",
    "USER": "admin",
    "PASS": "your-application-password",
    "authType": "basic"
  }
}
  1. Add to Claude Desktop configuration:
{
  "mcpServers": {
    "claudeus-wp-mcp": {
      "command": "npx",
      "args": ["-y", "claudeus-wp-mcp"],
      "env": {
        "WP_SITES_PATH": "/absolute/path/to/your/wp-sites.json"
      }
    }
  }
}

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.