经 AI Skill Hub 精选评估,arkon MCP工具 获评「强烈推荐」。这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.2 分,适合有一定技术背景的用户使用。
企业级自建知识库系统,支持知识嵌入和检索。集成MCP协议,为AI助手提供本地知识注入能力。适合需要私有知识库、企业内部文档管理和AI增强检索的团队使用。
arkon MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
企业级自建知识库系统,支持知识嵌入和检索。集成MCP协议,为AI助手提供本地知识注入能力。适合需要私有知识库、企业内部文档管理和AI增强检索的团队使用。
arkon MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/nduckmink/arkon
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"arkon-mcp--": {
"command": "npx",
"args": ["-y", "arkon"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 arkon MCP工具 执行以下任务... Claude: [自动调用 arkon MCP工具 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"arkon_mcp__": {
"command": "npx",
"args": ["-y", "arkon"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
<p align="center"> <a href="LICENSE"><img src="https://img.shields.io/badge/License-PolyForm_Internal_Use_1.0.0-blue.svg" alt="License"></a> <a href="https://github.com/nduckmink/arkon/stargazers"><img src="https://img.shields.io/github/stars/nduckmink/arkon.svg" alt="GitHub Stars"></a> <a href="https://www.docker.com/"><img src="https://img.shields.io/badge/Docker-Ready-blue.svg" alt="Docker"></a> </p>
<p align="center"> <img src="docs/assets/arkon.png" alt="Arkon" width="720"> </p>
Arkon is a self-hosted, enterprise-grade knowledge management layer that bridges organizational data and AI clients. It runs as a centralized MCP Server (Model Context Protocol), compiling your SOPs, policies, and internal docs into a structured, traceable knowledge wiki - then serving that wiki to Claude and other LLMs through a single permission-scoped endpoint.
Arkon runs 7 Docker containers (PostgreSQL + pgvector, Redis, MinIO, FastAPI API, 2 ARQ workers, Next.js frontend). The table below provides recommended configurations based on team size:
| **Starter** | **Team** | **Enterprise** | |
|---|---|---|---|
| **Team size** | 1 – 20 | 20 – 100 | 100+ |
| **vCPU** | 2 cores | 4 cores | 8+ cores |
| **RAM** | 4 GB | 8 GB | 16+ GB |
| **Storage** | 40 GB SSD | 100 GB SSD | 250+ GB NVMe SSD |
| **OS** | Ubuntu 22.04+ / Debian 12+ | Ubuntu 22.04+ / Debian 12+ | Ubuntu 22.04+ / Debian 12+ |
| **Use case** | Evaluation / small teams | Departmental deployment | Organization-wide rollout |
[!NOTE] - RAM is the primary bottleneck — the MRP pipeline workers load large LLM context windows into memory during wiki compilation. - Storage scales with your document corpus — pgvector indexes, MinIO file storage, and PostgreSQL WAL logs are the main consumers. - All AI inference happens externally (Anthropic / Google / OpenAI APIs), so GPU is not required. - A reverse proxy (Nginx / Caddy) with SSL is recommended for production. See Setup Guide.
---
[!NOTE] Arkon is built for teams, not individuals. If you're looking for a personal knowledge setup, Obsidian + Claude Skills is a much simpler fit. Not a tech person? Skip the self-hosting hassle — reach out for a free guided demo tailored for your team. No config, no Docker, just a walkthrough of what Arkon can do for your organization.
Prerequisites: Docker & Docker Compose, plus an API key from your preferred AI provider (Anthropic, Google, or OpenAI).
1. Clone the repository:
git clone https://github.com/nduckmink/arkon.git
cd arkon
2. Configure environment:
cp .env.docker.example .env.docker
# Edit .env.docker - set SECRET_KEY, admin credentials, and Postgres/MinIO secrets
3. Launch:
docker compose --env-file .env.docker up -d --build
http://localhost:3119, sign in as admin, then go to Settings to pick your embedding / LLM / vision models and paste API keys.→ See Setup Guide for development mode and the full env reference.
---
Unlike a vector database that just chunks and indexes, Arkon's MRP pipeline (Map → Reduce → Plan-review → Refine → Verify → Commit) actually compiles documents into a coherent wiki of interlinked pages. - Plan review before write: every ingestion produces a human-reviewable plan listing which wiki pages will be created or updated. Editors can regenerate the plan with feedback before any page is written. - Page merge instead of overwrite: when a new source touches an existing wiki page, content is LLM-merged so prior knowledge is never lost. - Traceable claims: every page records the source documents it was compiled from. - Image-aware: vision captions are baked into source text before compilation, so wiki pages reference the right images in the right places. - Resumable: drafts persist mid-pipeline; a crashed run resumes without re-doing the expensive LLM work.
aiskill88点评:开源MCP知识库方案,填补企业级本地知识库空白。架构完整,维护活跃,是构建私有AI知识系统的优选工具。
该工具使用 NOASSERTION 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
📄 NOASSERTION — 请查阅原始协议条款了解具体使用限制。
AI Skill Hub 点评:arkon MCP工具 的核心功能完整,质量优秀。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | arkon |
| 原始描述 | 开源MCP工具:Arkon: Enterprise AI Knowledge Hub & MCP Server. Self-hosted knowledge base for 。⭐725 · Python |
| Topics | 知识库MCP服务器企业AI向量嵌入本地部署 |
| GitHub | https://github.com/nduckmink/arkon |
| License | NOASSERTION |
| 语言 | Python |
收录时间:2026-05-16 · 更新时间:2026-05-19 · License:NOASSERTION · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端