ultimate_mcp_server vs arkon
并排对比,帮你在这两个 MCP server 之间做选择。
ultimate_mcp_server by Dicklesworthstone | arkon by nduckmink | |
|---|---|---|
| Stars | ★ 149 | ★ 729 |
| 30天用量 | — | — |
| 综合分 | 85 | 52 |
| 官方 | — | — |
| 分类 | AI / LLM 工具浏览器自动化本地文件系统 | 知识库 / RAGAI / LLM 工具效率工具 |
| 实现语言 | Python | Python |
| 最近提交 | 2 个月前 | 本月 |
ultimate_mcp_server · 概述
一个功能全面的 MCP server,为 AI 提供多种能力:LLM 委托、浏览器自动化、文档处理和认知记忆系统。
arkon · 概述
企业级AI知识中心,作为MCP服务器提供安全的组织RAG上下文和AI技能访问。
ultimate_mcp_server · 使用场景
- 使用 OCR 和结构化数据提取进行复杂的文档处理和分析
- 跨多个网站进行网页自动化和研究,通过浏览器控制
- 通过模型间的智能任务分配实现成本优化的 AI 工作流
arkon · 使用场景
- 企业级知识管理与部门隔离和基于角色的访问控制
- 通过MCP集成组织上下文的AI助手
- 安全文档处理与知识编译,带人工审查流程
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_serverarkon · 安装
Docker安装
- 克隆仓库:
``shell git clone https://github.com/nduckmink/arkon.git cd arkon ``
- 配置环境:
``shell cp .env.docker.example .env.docker # 编辑.env.docker - 设置SECRET_KEY、管理员凭据和Postgres/MinIO密钥 ``
- 启动:
``shell docker compose --env-file .env.docker up -d --build ``
- 访问门户
http://localhost:3119,以管理员身份登录,然后进入**设置**选择嵌入/LLM/视觉模型并粘贴API密钥。
Claude Desktop集成
创建员工账户并生成MCP令牌后:
{
"mcpServers": {
"arkon": {
"url": "https://your-arkon-server/mcp",
"headers": { "Authorization": "Bearer ark_xxxxxxxxxxxx" }
}
}
}将其放入claude_desktop_config.json并重启Claude Desktop。