MCP Catalogs
Home

wp-mcp vs everything

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

wp-mcp
by Adi-ty
everything
by modelcontextprotocol
Stars★ 2★ 85,748
30d uses
Score3277
Official
Categories
E-commerceAI / LLM ToolsDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit10 mo agothis month

wp-mcp · Summary

WordPress MCP server enables AI agents to manage WordPress content through natural language commands.

everything · Summary

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

wp-mcp · Use cases

  • AI-powered content creation and publishing for WordPress blogs
  • Voice-controlled website management through AI assistants
  • Automated content generation with direct WordPress publishing

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

wp-mcp · Install

npm install @adi.lib/wp-mcp

Add to your client configuration:

{
  "servers": {
    "wp-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@adi.lib/wp-mcp"],
      "env": {
        "WP_BASE_URL": "https://your-site.com",
        "WP_USERNAME": "admin",
        "WP_APP_PASSWORD": "abc1 def2 ghi3 jkl4"
      }
    }
  }
}

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.