augments-mcp-server vs filesystem
并排对比,帮你在这两个 MCP server 之间做选择。
augments-mcp-server by augmnt | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 122 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 49 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具AI / LLM 工具搜索 | 本地文件系统开发者工具效率工具 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 2 个月前 | 本月 |
augments-mcp-server · 概述
全面的 MCP 服务器,为任何 npm 包提供实时文档访问,具有智能搜索和上下文感知格式化功能。
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
augments-mcp-server · 使用场景
- 获取任何 npm 包的 API 上下文、示例和文档
- 比较不同 npm 包的功能、依赖性和性能
- 诊断错误并查找包版本之间的迁移指南
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
augments-mcp-server · 安装
Claude Code
# 添加 MCP 服务器(通过 npx 本地运行)
claude mcp add -s user augments -- npx -y @augmnt-sh/augments-mcp-server
# 验证配置
claude mcp listCursor
添加到您的 MCP 配置中:
{
"mcpServers": {
"augments": {
"command": "npx",
"args": ["-y", "@augmnt-sh/augments-mcp-server"]
}
}
}环境变量
设置 GITHUB_TOKEN 以获得更高的 GitHub API 速率限制:
{
"mcpServers": {
"augments": {
"command": "npx",
"args": ["-y", "@augmnt-sh/augments-mcp-server"],
"env": {
"GITHUB_TOKEN": "ghp_your_token_here"
}
}
}
}filesystem · 安装
安装
使用 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 中安装。