cursor10x-mcp vs ultimate_mcp_server
并排对比,帮你在这两个 MCP server 之间做选择。
cursor10x-mcp by aiurda | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 79 | ★ 149 |
| 30天用量 | — | — |
| 综合分 | 40 | 85 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具知识库 / RAG | AI / LLM 工具浏览器自动化本地文件系统 |
| 实现语言 | JavaScript | Python |
| 最近提交 | 13 个月前 | 2 个月前 |
cursor10x-mcp · 概述
DevContext(前身为 Cursor10x)是一个为 AI 助手提供持久多维内存的 MCP 服务器。
ultimate_mcp_server · 概述
一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。
cursor10x-mcp · 使用场景
- 在多个开发会话中保持项目上下文
- 增强 AI 助手对代码关系的理解
- 长期保留技术决策和架构决策
ultimate_mcp_server · 使用场景
- 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
- 跨多个网站进行网页自动化和研究,通过浏览器控制
- 通过模型间的智能任务分配实现成本优化的 AI 工作流
cursor10x-mcp · 安装
前置条件
- Node.js 18 或更高版本
- npm 或 yarn 包管理器
- Turso 数据库账户
设置步骤
- **配置 Turso 数据库:**
# 安装 Turso CLI
curl -sSfL https://get.turso.tech/install.sh | bash
# 登录 Turso
turso auth login
# 创建数据库
turso db create cursor10x-mcp
# 获取数据库 URL 和令牌
turso db show cursor10x-mcp --url
turso db tokens create cursor10x-mcp- **配置 Cursor MCP:**
在项目目录中更新 .cursor/mcp.json 文件,添加数据库 URL 和 Turso 认证令牌:
{
"mcpServers": {
"cursor10x-mcp": {
"command": "npx",
"args": ["cursor10x-mcp"],
"enabled": true,
"env": {
"TURSO_DATABASE_URL": "your-turso-database-url",
"TURSO_AUTH_TOKEN": "your-turso-auth-token"
}
}
}
}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