filesystem vs markplane
并排对比,帮你在这两个 MCP server 之间做选择。
filesystem by modelcontextprotocol | markplane by zerowand01 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 165 |
| 30天用量 | — | — |
| 综合分 | 77 | 48 |
| 官方 | ✓ | — |
| 分类 | 本地文件系统开发者工具效率工具 | 效率工具开发者工具AI / LLM 工具 |
| 实现语言 | TypeScript | Rust |
| 最近提交 | 本月 | 本月 |
filesystem · 概述
功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。
markplane · 概述
Markplane 是一款AI原生项目管理工具,将任务存储在markdown文件中,并通过MCP服务器提供功能。
filesystem · 使用场景
- 使 AI 模型能够读取和写入项目文件进行开发
- 允许 Claude 或其他 MCP 客户端浏览和分析代码库
- 为内容生成提供对特定目录的安全沙盒访问
markplane · 使用场景
- AI助手通过自然语言命令创建、更新和优先级排序项目任务
- 项目经理通过Web界面跟踪进度和依赖关系,同时AI在会话间维护上下文
- 开发团队维护与代码变更同步的项目文档,通过版本控制管理
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 中安装。
markplane · 安装
安装
**Homebrew (macOS 和 Linux)**
brew install zerowand01/markplane/markplane**Shell 脚本 (macOS 和 Linux)**
curl -fsSL https://raw.githubusercontent.com/zerowand01/markplane/master/install.sh | sh**预编译二进制文件** 从 [GitHub Releases](https://github.com/zerowand01/markplane/releases) 下载适用于您平台的最新版本。
**Claude Desktop 的 MCP 设置** 添加到您的 Claude Desktop 配置中:
{
"mcpServers": {
"markplane": {
"command": "markplane",
"args": ["mcp"]
}
}
}或在代码库根目录添加 .mcp.json 文件进行项目级设置。