MCP Catalogs
首页

wassette vs everything

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

wassette
by microsoft
everything
by modelcontextprotocol
Stars★ 888★ 85,748
30天用量
综合分5277
官方
分类
安全开发者工具AI / LLM 工具
开发者工具AI / LLM 工具其它
实现语言RustTypeScript
最近提交1 个月前本月

wassette · 概述

Wassette 是一个面向安全性的运行时,通过 MCP 为 AI 代理扩展 WebAssembly 组件。

everything · 概述

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

wassette · 使用场景

  • 在安全沙箱环境中扩展 AI 代理的自定义工具
  • 在 AI 应用中运行 WebAssembly 组件作为 MCP 工具
  • 为 AI 系统创建可重用的、注重安全的工具

everything · 使用场景

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

wassette · 安装

安装

**快速开始(Linux/macOS):**

curl -fsSL https://raw.githubusercontent.com/microsoft/wassette/main/install.sh | bash

**其他平台:** 请参阅[安装指南](https://microsoft.github.io/wassette/latest/installation.html)了解 Windows、Homebrew、Nix、Docker 等平台的安装方法。

配置

安装后,将 Wassette 注册到您的 MCP 客户端中。例如,在 Claude Desktop 中:

{
  "mcpServers": {
    "wassette": {
      "command": "wassette",
      "args": []
    }
  }
}

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