MCP Catalogs
首页

skrills vs everything

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

skrills
by athola
everything
by modelcontextprotocol
Stars★ 64★ 85,748
30天用量
综合分4877
官方
分类
开发者工具AI / LLM 工具效率工具
开发者工具AI / LLM 工具其它
实现语言RustTypeScript
最近提交本月本月

skrills · 概述

一个36工具的MCP服务器,用于验证、分析并同步Claude Code、Codex CLI、Copilot CLI和Cursor之间的技能。

everything · 概述

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

skrills · 使用场景

  • 在Claude Code、Codex CLI、GitHub Copilot CLI和Cursor之间同步技能和配置
  • 针对多个AI编码助手平台验证技能并提供自动修复功能
  • 分析令牌使用情况并优化AI助手的上下文窗口

everything · 使用场景

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

skrills · 安装

# macOS/Linux
curl -LsSf https://raw.githubusercontent.com/athola/skrills/HEAD/scripts/install.sh | sh

# Windows PowerShell
powershell -ExecutionPolicy Bypass -NoLogo -NoProfile -Command "
Remove-Item alias:curl -ErrorAction SilentlyContinue; iwr https://raw.githubusercontent.com/athola/skrills/HEAD/scripts/install.ps1 -UseBasicParsing | iex"

cargo install skrills

作为MCP服务器使用:

skrills serve --stdio

Claude Desktop集成,添加到claude_desktop_config.json

{
  "mcpServers": {
    "skrills": {
      "command": "skrills",
      "args": ["serve", "--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 公开数据自动生成,定期更新。