everything vs markplane
并排对比,帮你在这两个 MCP server 之间做选择。
everything by modelcontextprotocol | markplane by zerowand01 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 165 |
| 30天用量 | — | — |
| 综合分 | 77 | 48 |
| 官方 | ✓ | — |
| 分类 | 开发者工具AI / LLM 工具其它 | 效率工具开发者工具AI / LLM 工具 |
| 实现语言 | TypeScript | Rust |
| 最近提交 | 本月 | 本月 |
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
markplane · 概述
Markplane 是一款AI原生项目管理工具,将任务存储在markdown文件中,并通过MCP服务器提供功能。
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
markplane · 使用场景
- AI助手通过自然语言命令创建、更新和优先级排序项目任务
- 项目经理通过Web界面跟踪进度和依赖关系,同时AI在会话间维护上下文
- 开发团队维护与代码变更同步的项目文档,通过版本控制管理
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-everythingmarkplane · 安装
安装
**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 文件进行项目级设置。