MCP Catalogs
首页

mcp.mbt vs everything

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

mcp.mbt
by colmugx
everything
by modelcontextprotocol
Stars★ 2★ 85,748
30天用量
综合分3477
官方
分类
开发者工具AI / LLM 工具其它
开发者工具AI / LLM 工具其它
实现语言MoonBitTypeScript
最近提交3 个月前本月

mcp.mbt · 概述

使用 MoonBit 实现的类型安全 MCP 服务器,支持双传输协议(STDIO/HTTP)。

everything · 概述

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

mcp.mbt · 使用场景

  • 使用 MoonBit 的类型安全性为 Claude Desktop 构建自定义 AI 工具
  • 创建需要同时服务桌面和 Web 客户端的 MCP 服务器
  • 开发具有结构化错误处理的、可投入生产的 MCP 服务器

everything · 使用场景

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

mcp.mbt · 安装

moon add colmugx/mcp

对于 Claude Desktop 集成,添加到 claude_desktop_config.json

{
  "mcpServers": {
    "my-server": {
      "command": "moon",
      "args": ["run", "path/to/your_server.mbt"]
    }
  }
}

运行示例服务器:

moon run @examples/cmd/main

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