TextEdit-MCP vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
TextEdit-MCP by M-Pineapple | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 3 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 39 | 77 |
| 官方 | — | ✓ |
| 分类 | 效率工具AI / LLM 工具开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Swift | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
TextEdit-MCP · 概述
基于 Swift 的 MCP 服务器,可使用原生 macOS TextEdit 格式化功能创建 RTF 文档。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
TextEdit-MCP · 使用场景
- 创建带高亮和行动项的格式化会议记录
- 生成带表格和代码格式的技术文档
- 制作具有一致样式和模板的商业报告
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
TextEdit-MCP · 安装
安装
先决条件
- macOS(需要 NSAttributedString 和 RTF 生成)
- Swift 5.0 或更高版本
- Claude Desktop
快速安装
- 克隆仓库:
git clone https://github.com/M-Pineapple/TextEdit-MCP.git
cd TextEdit-MCP- 运行安装脚本:
./install.sh- 重启 Claude Desktop
安装脚本将:
- 构建 Swift 项目
- 安装 MCP 服务器二进制文件
- 更新您的 Claude Desktop 配置
- 创建现有配置的备份
Claude Desktop 配置
添加到您的 Claude Desktop config.json:
{
"mcpServers": {
"textedit": {
"command": "path/to/TextEdit-MCP",
"args": []
}
}
}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-everything