MCP Catalogs
首页

filesystem vs arkon

并排对比,帮你在这两个 MCP server 之间做选择。

filesystem
by modelcontextprotocol
arkon
by nduckmink
Stars★ 85,748★ 729
30天用量
综合分7752
官方
分类
本地文件系统开发者工具效率工具
知识库 / RAGAI / LLM 工具效率工具
实现语言TypeScriptPython
最近提交本月本月

filesystem · 概述

功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。

arkon · 概述

企业级AI知识中心,作为MCP服务器提供安全的组织RAG上下文和AI技能访问。

filesystem · 使用场景

  • 使 AI 模型能够读取和写入项目文件进行开发
  • 允许 Claude 或其他 MCP 客户端浏览和分析代码库
  • 为内容生成提供对特定目录的安全沙盒访问

arkon · 使用场景

  • 企业级知识管理与部门隔离和基于角色的访问控制
  • 通过MCP集成组织上下文的AI助手
  • 安全文档处理与知识编译,带人工审查流程

filesystem · 安装

安装

使用 NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

使用 Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code 扩展

点击 README 中的安装按钮直接在 VS Code 中安装。

arkon · 安装

Docker安装

  1. 克隆仓库:

``shell git clone https://github.com/nduckmink/arkon.git cd arkon ``

  1. 配置环境:

``shell cp .env.docker.example .env.docker # 编辑.env.docker - 设置SECRET_KEY、管理员凭据和Postgres/MinIO密钥 ``

  1. 启动:

``shell docker compose --env-file .env.docker up -d --build ``

  1. 访问门户 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。

对比内容由 README + GitHub 公开数据自动生成,定期更新。