MCP Catalogs
Home

everything vs autowpmcp

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

everything
by modelcontextprotocol
autowpmcp
by Njengah
Stars★ 85,748★ 21
30d uses
Score7740
Official
Categories
Developer ToolsAI / LLM ToolsOther
ProductivityDeveloper ToolsAI / LLM Tools
LanguageTypeScriptJavaScript
Last committhis month7 mo ago

everything · Summary

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

autowpmcp · Summary

AutoWP MCP server connects Claude to WordPress sites for automated content creation and site management.

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

autowpmcp · Use cases

  • Automated blog post creation and publishing directly from Claude conversations
  • Bulk media management including uploading, organizing and optimizing images
  • WordPress site management through AI including user, taxonomy and content operations

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

autowpmcp · Install

Installation

  1. Install & Build:
npm install
npm run build
npm start
  1. Configure Claude Desktop:

Add to your Claude Desktop MCP configuration:

{
  "mcpServers": {
    "autowp": {
      "command": "node",
      "args": ["/path/to/your/autowp-mcp/build/index.js"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.