MCP Catalogs
首页

mcp-server-any-openapi vs filesystem

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

mcp-server-any-openapi
by baryhuang
filesystem
by modelcontextprotocol
Stars★ 82★ 85,748
30天用量
综合分4077
官方
分类
开发者工具AI / LLM 工具网页抓取
本地文件系统开发者工具效率工具
实现语言PythonTypeScript
最近提交13 个月前本月

mcp-server-any-openapi · 概述

一个MCP服务器,通过语义搜索OpenAPI规范,让Claude能够发现和调用任何API端点。

filesystem · 概述

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

mcp-server-any-openapi · 使用场景

  • 将私有API集成到Claude Desktop中,无需更新客户端配置
  • 处理大型OpenAPI规范,这些规范会使标准MCP客户端不堪重负
  • 跨多个API服务实现自然语言API发现

filesystem · 使用场景

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

mcp-server-any-openapi · 安装

通过Smithery安装

npx -y @smithery/cli install @baryhuang/mcp-server-any-openapi --client claude

使用pip安装

pip install mcp-server-any-openapi

Claude Desktop配置

{
  "mcpServers": {
    "any_openapi": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "OPENAPI_JSON_DOCS_URL=https://api.example.com/openapi.json",
        "-e",
        "MCP_API_PREFIX=finance",
        "-e",
        "GLOBAL_TOOL_PROMPT='Access to insights apis for ACME Financial Services abc.com .",
        "buryhuang/mcp-server-any-openapi:latest"
      ]
    }
  }
}

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 中安装。

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