MCP Catalogs
首页

everything vs wasmcp

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

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

everything · 概述

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

wasmcp · 概述

使用 WebAssembly 组件构建可组合 MCP 服务器的 SDK,支持 Rust、Python 和 TypeScript。

everything · 使用场景

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

wasmcp · 使用场景

  • 构建不同语言中具有隔离功能的模块化 MCP 服务器
  • 创建分布式 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

wasmcp · 安装

安装

# 使用安装脚本安装
curl -fsSL https://raw.githubusercontent.com/wasmcp/wasmcp/main/install.sh | bash

# 或从源码安装
cargo install --git https://github.com/wasmcp/wasmcp

要求

  • wasmtimewashspin 或其他支持组件的运行时

与 Claude Desktop 集成

添加到 claude_desktop_config.json

{
  "mcpServers": {
    "wasmcp": {
      "command": "wasmtime",
      "args": ["serve", "-Scli", "-Skeyvalue", "-Shttp", "path/to/your/server.wasm"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。