claude-code-skills vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
claude-code-skills by levnikolaevich | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 465 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 51 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具知识库 / RAG | 本地文件系统开发者工具效率工具 |
| 实现语言 | JavaScript | TypeScript |
| 最近提交 | 本月 | 本月 |
claude-code-skills · 概述
Claude Code插件套件,包含hex-line、hex-graph、hex-ssh和hex-research等MCP服务器,提供增强的代码智能功能。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
claude-code-skills · 使用场景
- 使用确定性编辑进行代码分析和审计
- 通过具有哈希验证的SSH进行远程开发
- 创建和导航代码知识图谱
- 研究假设和任务管理
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 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-mcpfilesystem · 安装
安装
使用 NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}使用 Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code 扩展
点击 README 中的安装按钮直接在 VS Code 中安装。