MCP Catalogs
首页

mcp vs everything

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

mcp
by EmilLindfors
everything
by modelcontextprotocol
Stars★ 18★ 85,748
30天用量
综合分3777
官方
分类
开发者工具本地文件系统AI / LLM 工具
开发者工具AI / LLM 工具其它
实现语言RustTypeScript
最近提交18 个月前本月

mcp · 概述

Rust实现的MCP协议库,为AI模型与外部资源提供标准化通信。

everything · 概述

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

mcp · 使用场景

  • 构建向AI模型暴露文件系统资源的MCP服务器
  • 创建需要通过MCP访问外部数据的AI应用
  • 开发使用Rust的协议 enforced 类型安全的AI集成

everything · 使用场景

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

mcp · 安装

安装

添加到您的Cargo.toml中:

[dependencies]
mcp = "0.1.0"

运行服务器

# 使用测试配置运行
cargo run --bin server -- --config "../servers/test.json"

# 使用stdio传输运行
cargo run --bin server -t stdio

# 使用SSE传输在3000端口运行
cargo run --bin server -t sse -p 3000

Claude Desktop集成

添加到Claude的claude_desktop_config.json中:

{
  "mcpServers": {
    "mcp-rs": {
      "command": "cargo",
      "args": ["run", "--bin", "server", "--", "-t", "stdio"]
    }
  }
}

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