Postman MCP Server

Developmentstdiohttp-streaming
Repositorio

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.

Conectar

Añade esta configuración a .claude/mcp.json

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

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

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Postman (@postmanlabs)
Repositorio
https://github.com/postmanlabs/postman-mcp-server
Estrellas
0
Última actualización
12 de julio de 2026