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.

Bağlan

Bu yapılandırmayı şuraya ekleyin: .claude/mcp.json

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

Araçlar (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"
    }
  }
}

Kaynaklar

Bu sunucu herhangi bir kaynak sunmuyor.

Prompt'lar

Bu sunucu herhangi bir prompt sunmuyor.

Sunucu bilgileri

Yazar
Postman (@postmanlabs)
Repository
https://github.com/postmanlabs/postman-mcp-server
Yıldızlar
0
Son güncelleme
12 Temmuz 2026