MCP Catalogs
首页

filesystem vs postman-mcp-server

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

filesystem
by modelcontextprotocol
postman-mcp-server
by postmanlabs
Stars★ 85,748★ 240
30天用量
综合分7751
官方
分类
本地文件系统开发者工具效率工具
开发者工具AI / LLM 工具效率工具
实现语言TypeScriptTypeScript
最近提交本月本月

filesystem · 概述

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

postman-mcp-server · 概述

Postman MCP Server 连接 AI 工具与 Postman API,用于 API 测试、集合管理和代码生成。

filesystem · 使用场景

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

postman-mcp-server · 使用场景

  • 使用 Postman 集合自动测试 API
  • 通过自然语言管理工作区和环境
  • 从 API 定义生成客户端代码

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

postman-mcp-server · 安装

远程服务器(推荐)

对于 Claude Desktop,添加到 claude_desktop_config.json

{
  "mcpServers": {
    "postman": {
      "command": "http",
      "args": ["https://mcp.postman.com/minimal"]
    }
  }
}

对于 VS Code,使用[安装按钮](https://insiders.vscode.dev/redirect/mcp/install?name=postman_mcp_server&config=%7B%22type%22%3A%20%22http%22%2C%22url%22%3A%20%22https%3A%2F%2Fmcp.postman.com%2Fminimal%22%2C%22headers%22%3A%7B%22Authorization%22%3A%22Bearer%20YOUR_API_KEY%22%7D%7D)或在 .vscode/mcp.json 中手动配置。

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