excalidraw-mcp vs ultimate_mcp_server
并排对比,帮你在这两个 MCP server 之间做选择。
excalidraw-mcp by cmd8 | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 4 | ★ 149 |
| 30天用量 | — | — |
| 综合分 | 38 | 85 |
| 官方 | — | — |
| 分类 | 效率工具开发者工具AI / LLM 工具 | AI / LLM 工具浏览器自动化本地文件系统 |
| 实现语言 | TypeScript | Python |
| 最近提交 | 6 个月前 | 2 个月前 |
excalidraw-mcp · 概述
用于创建和编程编辑 Excalidraw 图表的 MCP 服务器,提供节点和边操作工具。
ultimate_mcp_server · 概述
一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。
excalidraw-mcp · 使用场景
- 基于系统架构文档自动生成和更新 Excalidraw 图表
- 通过让 AI 代理以编程方式修改元素来实现图表协作
- 在 AI 助手中直接创建代码结构或系统设计的可视化图表
ultimate_mcp_server · 使用场景
- 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
- 跨多个网站进行网页自动化和研究,通过浏览器控制
- 通过模型间的智能任务分配实现成本优化的 AI 工作流
excalidraw-mcp · 安装
安装
Claude Desktop
将以下内容添加到 claude_desktop_config.json:
{
"mcpServers": {
"excalidraw": {
"command": "npx",
"args": ["-y", "@cmd8/excalidraw-mcp", "--diagram", "/path/to/diagram.excalidraw"]
}
}
}其他客户端
- **Cursor**: 添加到
~/.cursor/mcp.json - **Claude Code**:
claude mcp add excalidraw -- npx -y @cmd8/excalidraw-mcp --diagram /path/to/diagram.excalidraw - **VS Code**: 添加到 VS Code MCP 设置,类型为 "stdio"
- **Amp**:
amp mcp add excalidraw -- npx -y @cmd8/excalidraw-mcp --diagram /path/to/diagram.excalidraw - **Windsurf**: 添加到 MCP 配置
需要 Node.js >= v18.0.0
ultimate_mcp_server · 安装
安装
- 克隆仓库:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- 安装依赖:
pip install -e .- 对于 Claude Desktop 集成,添加到 claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- 运行服务器:
python -m ultimate_mcp_server