MCP Catalogs
首页

claude-code-skills vs everything

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

claude-code-skills
by levnikolaevich
everything
by modelcontextprotocol
Stars★ 465★ 85,748
30天用量
综合分5177
官方
分类
开发者工具AI / LLM 工具知识库 / RAG
开发者工具AI / LLM 工具其它
实现语言JavaScriptTypeScript
最近提交本月本月

claude-code-skills · 概述

Claude Code插件套件,包含hex-line、hex-graph、hex-ssh和hex-research等MCP服务器,提供增强的代码智能功能。

everything · 概述

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

claude-code-skills · 使用场景

  • 使用确定性编辑进行代码分析和审计
  • 通过具有哈希验证的SSH进行远程开发
  • 创建和导航代码知识图谱
  • 研究假设和任务管理

everything · 使用场景

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

claude-code-skills · 安装

安装

**先决条件:** [Claude Code](https://docs.anthropic.com/en/docs/claude-code) 或 [OpenAI Codex CLI](https://developers.openai.com/codex)

# Claude Code
/plugin marketplace add levnikolaevich/claude-code-skills
/plugin install setup-environment@levnikolaevich-skills-marketplace

# Codex CLI
codex plugin marketplace add levnikolaevich/claude-code-skills
codex
/plugins

**MCP服务器安装:**

# hex-line — 哈希验证文件编辑(捆绑)
claude mcp add -s user hex-line -- npx -y @levnikolaevich/hex-line-mcp

# hex-ssh — 具有哈希验证的高效SSH(捆绑)
claude mcp add -s user hex-ssh -- npx -y @levnikolaevich/hex-ssh-mcp

# hex-graph — 代码知识图谱(捆绑)
claude mcp add -s user hex-graph -- npx -y @levnikolaevich/hex-graph-mcp

# hex-research — 研究假设图谱(捆绑)
claude mcp add -s user hex-research -- npx -y @levnikolaevich/hex-research-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
对比内容由 README + GitHub 公开数据自动生成,定期更新。