MCP Catalogs
首页

filesystem vs docmole

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

filesystem
by modelcontextprotocol
docmole
by Vigtu
Stars★ 85,748★ 18
30天用量
综合分7743
官方
分类
本地文件系统开发者工具效率工具
AI / LLM 工具开发者工具搜索
实现语言TypeScriptTypeScript
最近提交本月1 个月前

filesystem · 概述

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

docmole · 概述

一个MCP服务器,可以让你用AI查询任何文档站点,支持本地RAG和Mintlify驱动站点。

filesystem · 使用场景

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

docmole · 使用场景

  • 从Claude或Cursor等AI助手直接搜索文档
  • 为内部文档构建自定义文档搜索解决方案
  • 使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 中安装。

docmole · 安装

安装

使用bunx(无需安装):

bunx docmole --help

或全局安装:

bun install -g docmole

本地RAG模式

# 一次性设置
bunx docmole setup --url https://docs.example.com --id my-docs

# 启动MCP服务器
bunx docmole serve --project my-docs

Mintlify模式(零设置)

bunx docmole -p agno-v2

Claude桌面配置

{
  "mcpServers": {
    "my-docs": {
      "command": "bunx",
      "args": ["docmole", "serve", "--project", "my-docs"]
    },
    "mintlify-docs": {
      "command": "bunx",
      "args": ["docmole", "-p", "agno-v2"]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。