MCP Catalogs
首页

ghost-mcp vs everything

并排对比,帮你在这两个 MCP server 之间做选择。

ghost-mcp
by MFYDev
everything
by modelcontextprotocol
Stars★ 186★ 85,748
30天用量
综合分5077
官方
分类
沟通协作效率工具AI / LLM 工具
开发者工具AI / LLM 工具其它
实现语言TypeScriptTypeScript
最近提交1 个月前本月

ghost-mcp · 概述

一个通过 Claude 等 LLM 界面管理 Ghost CMS 的 MCP 服务器,提供全面的博客管理工具。

everything · 概述

官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。

ghost-mcp · 使用场景

  • 内容创作者通过 Claude 中的自然语言命令管理 Ghost 博客
  • 通过 LLM 交互实现自动化博客发布和内容管理
  • 无需使用网页界面进行 Ghost CMS 管理

everything · 使用场景

  • 测试 MCP 客户端实现是否支持所有协议功能
  • 通过参考服务器学习 MCP 协议能力
  • 验证客户端对不同传输方式的兼容性

ghost-mcp · 安装

使用 npm 安装 Ghost MCP 服务器:

npm install -g @fanyangmeng/ghost-mcp

在您的 claude_desktop_config.json 中使用以下 JSON 配置 Claude Desktop:

{
  "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 · 安装

NPX(推荐)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Windows 用户请使用 cmd /c

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

全局安装

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
对比内容由 README + GitHub 公开数据自动生成,定期更新。