Postman MCP Server

Developmentstdiohttp-streaming
Repository

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.

Connect

Add this configuration to .claude/mcp.json

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

Tools (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"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server Information

Author
Postman (@postmanlabs)
Repository
https://github.com/postmanlabs/postman-mcp-server
Stars
0
Last Updated
July 12, 2026