Cortex vs ultimate_mcp_server
并排对比,帮你在这两个 MCP server 之间做选择。
Cortex by cdeust | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 34 | ★ 149 |
| 30天用量 | — | — |
| 综合分 | 47 | 85 |
| 官方 | — | — |
| 分类 | AI / LLM 工具开发者工具知识库 / RAG | AI / LLM 工具浏览器自动化本地文件系统 |
| 实现语言 | Python | Python |
| 最近提交 | 本月 | 2 个月前 |
Cortex · 概述
Cortex 是基于神经科学的 Claude Code 持久化记忆系统,拥有 47 个 MCP 工具,可跨会话记住上下文、决策和模式。
ultimate_mcp_server · 概述
一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。
Cortex · 使用场景
- Claude Code 的持久化记忆,可跨会话记住上下文和决策
- 检索过去的调试会话和架构决策,用于当前问题解决
- 使用科学写作工具和 LaTeX 支持自动生成文档
ultimate_mcp_server · 使用场景
- 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
- 跨多个网站进行网页自动化和研究,通过浏览器控制
- 通过模型间的智能任务分配实现成本优化的 AI 工作流
Cortex · 安装
claude plugin marketplace add cdeust/Cortex
claude plugin install cortex重启 Claude Code 会话,然后运行:
/cortex-setup-project这将处理 PostgreSQL + pgvector 安装、数据库创建、嵌入模型下载、认知档案构建、代码库种子设置、对话导入和钩子注册。
验证设置:
python3 -m mcp_server.doctorultimate_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