MCP Catalogs
首页

ai-command vs everything

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

ai-command
by mcp-wp
everything
by modelcontextprotocol
Stars★ 116★ 85,748
30天用量
综合分4677
官方
分类
开发者工具AI / LLM 工具效率工具
开发者工具AI / LLM 工具其它
实现语言PHPTypeScript
最近提交5 个月前本月

ai-command · 概述

WordPress MCP服务器,通过WP-CLI集成实现AI驱动的网站管理。

everything · 概述

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

ai-command · 使用场景

  • AI驱动的WordPress内容创建与管理(开发阶段)
  • 通过AI命令实现自动化的站点配置和设置
  • 将AI功能集成到现有的WordPress开发工作流中

everything · 使用场景

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

ai-command · 安装

  1. 安装WP-CLI v2.11或更高版本(使用wp cli update更新)
  2. 在您的WordPress站点上安装AI Services插件
  3. 使用以下命令安装包:

``bash wp package install mcp-wp/ai-command:dev-main ``

  1. 在您的客户端(如Claude Desktop)中配置MCP连接:

```json { "mcpServers": { "wordpress": { "command": "wp", "args": ["ai", "mcp"] } } }

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 公开数据自动生成,定期更新。