MCP Catalogs
首页

everything vs arch-mcp

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

everything
by modelcontextprotocol
arch-mcp
by nihalxkumar
Stars★ 85,748★ 45
30天用量
综合分7745
官方
分类
开发者工具AI / LLM 工具其它
运维基建开发者工具AI / LLM 工具
实现语言TypeScriptPython
最近提交本月2 个月前

everything · 概述

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

arch-mcp · 概述

一个全面的 MCP 服务器,提供对 Arch Linux 生态系统(Wiki、AUR 和仓库)的 AI 访问。

everything · 使用场景

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

arch-mcp · 使用场景

  • AI 辅助的 Arch Linux 软件包管理和故障排除
  • 通过自然语言查询获取 Arch Wiki 文档
  • 使用安全检查管理 AUR 软件包

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

arch-mcp · 安装

安装

包管理器

pip install arch-mcp-server

Claude Desktop 配置

添加到 Claude Desktop config.json:

{
  "mcpServers": {
    "arch-mcp": {
      "command": "python",
      "args": ["-m", "arch_mcp_server"],
      "env": {}
    }
  }
}

Python 直接执行

python -m arch_mcp_server
对比内容由 README + GitHub 公开数据自动生成,定期更新。