Postman MCP Server

Developmentstdiohttp-streaming
代码仓库

Postman's official MCP server that connects the Postman platform to AI tools. Gives agents the ability to access workspaces, manage collections and environments, work with API specifications, run requests, and automate API workflows through natural language. Useful for exploring, testing, and maintaining APIs directly from an MCP-compatible assistant.

连接

将此配置添加到 .claude/mcp.json

传输方式:
{
  "mcpServers": {
    "postman": {
      "command": "npx",
      "args": [
        "-y",
        "@postman/postman-mcp-server"
      ],
      "env": {
        "POSTMAN_API_KEY": "<YOUR_POSTMAN_API_KEY>"
      }
    }
  }
}

工具 (3)

list_collections

List the Postman collections available in the authenticated account or workspace.

{
  "type": "object",
  "properties": {
    "workspace": {
      "type": "string",
      "description": "Optional workspace ID to scope the results"
    }
  }
}

get_collection

Retrieve the contents of a specific Postman collection.

{
  "type": "object",
  "required": [
    "collection_id"
  ],
  "properties": {
    "collection_id": {
      "type": "string",
      "description": "ID of the collection to fetch"
    }
  }
}

create_collection

Create a new Postman collection in a workspace.

{
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the new collection"
    },
    "workspace": {
      "type": "string",
      "description": "Workspace ID to create the collection in"
    }
  }
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
Postman (@postmanlabs)
代码仓库
https://github.com/postmanlabs/postman-mcp-server
星标
0
最后更新
2026年7月12日