filesystem vs mitre-attack-mcp
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | mitre-attack-mcp by stoyky | |
|---|---|---|
| Stars | ★ 85,748 | ★ 40 |
| 30天用量 | — | — |
| 综合分 | 77 | 42 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 安全知识库 / RAG开发者工具 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 本月 | 10 个月前 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
mitre-attack-mcp · 概述
MCP服务器提供50+种工具查询MITRE ATT&CK知识库,支持自动生成Navigator图层。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
mitre-attack-mcp · 使用场景
- 查询特定恶意软件、战术或技术的详细信息
- 生成ATT&CK Navigator可视化图层进行威胁分析
- 发现威胁行为者与其工具之间的关系
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 中安装。
mitre-attack-mcp · 安装
安装
要克隆并运行此服务器,您需要在计算机上安装[Git](https://git-scm.com)、[Python](https://www.python.org/)和[PipX](https://github.com/pypa/pipx)。
- 确保已使用官方安装指南安装Git、Python和PipX(适用于Windows/Mac/Linux)
- 使用PipX安装MCP服务器
pipx install git+https://github.com/stoyky/mitre-attack-mcp在Claude AI Desktop中配置
将以下内容添加到您的claude_desktop_config.json文件中:
{
"mcpServers": {
"mitre-attack": {
"command": "mitre-attack-mcp",
"args": []
}
}
}