MCP Catalogs
Home

ghost-mcp vs everything

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

ghost-mcp
by MFYDev
everything
by modelcontextprotocol
Stars★ 186★ 85,748
30d uses
Score5077
Official
Categories
CommunicationProductivityAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

ghost-mcp · Summary

An MCP server for managing Ghost CMS through LLM interfaces like Claude with comprehensive blog management tools.

everything · Summary

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

ghost-mcp · Use cases

  • Content creators managing Ghost blogs through natural language commands in Claude
  • Automated blog publishing and content management via LLM interactions
  • Ghost CMS administration without using the web interface

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

ghost-mcp · Install

Install the Ghost MCP server using npm:

npm install -g @fanyangmeng/ghost-mcp

Configure Claude Desktop with this JSON in your claude_desktop_config.json:

{
  "mcpServers": {
      "ghost-mcp": {
        "command": "npx",
        "args": ["-y", "@fanyangmeng/ghost-mcp"],
        "env": {
            "GHOST_API_URL": "https://yourblog.com",
            "GHOST_ADMIN_API_KEY": "your_admin_api_key",
            "GHOST_API_VERSION": "v5.0"
        }
      }
    }
}

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.