everything vs arkon
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | arkon by nduckmink | |
|---|---|---|
| Stars | ★ 85,748 | ★ 729 |
| 30d uses | — | — |
| Score | 77 | 52 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Knowledge GraphAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
arkon · Summary
Enterprise AI knowledge hub serving as MCP server for secure organizational RAG contexts and AI skills.
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
arkon · Use cases
- Enterprise knowledge management with departmental isolation and RBAC
- AI assistant integration with organizational context via MCP
- Secure document processing and knowledge compilation with human review workflow
everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everythingarkon · Install
Docker Installation
- Clone the repository:
``shell git clone https://github.com/nduckmink/arkon.git cd arkon ``
- Configure environment:
``shell cp .env.docker.example .env.docker # Edit .env.docker - set SECRET_KEY, admin credentials, and Postgres/MinIO secrets ``
- Launch:
``shell docker compose --env-file .env.docker up -d --build ``
- Access the portal at
http://localhost:3119, sign in as admin, then go to **Settings** to pick your embedding/LLM/vision models and paste API keys.
Claude Desktop Integration
After creating an employee account and generating an MCP token:
{
"mcpServers": {
"arkon": {
"url": "https://your-arkon-server/mcp",
"headers": { "Authorization": "Bearer ark_xxxxxxxxxxxx" }
}
}
}Drop it into claude_desktop_config.json and restart Claude Desktop.