Skip to main content
Glama

Postman

Official
by postmanlabs

Postman MCP Server

This project offers the following Model Context Protocol (MCP) server options:

For more information about the available transports, see the MCP specification.

STDIO

This is a lightweight solution that's ideal for integration with editors and tools like VS Code.

For Docker set up and installation, see DOCKER.md.

VS Code integration

Note: By default, this server provides 37 tools (minimal mode). Use the --full flag to access all 106 tools. Use the --region flag to specify the Postman API region (us or eu), or set the POSTMAN_API_BASE_URL environment variable directly.

Integrate your MCP server with Visual Studio Code and use it with VS Code extensions that support MCP. To do this, do the following:

  1. Create a .vscode/mcp.json file in your project and enter the following:
    { "servers": { "postman-api-mcp": { "type": "stdio", "command": "npx", "args": [ "@postman/postman-mcp-server", "--full" // (optional) Use this flag to enable full mode ], "env": { "POSTMAN_API_KEY": "${input:postman-api-key}" } } }, "inputs": [ { "id": "postman-api-key", "type": "promptString", "description": "Enter your Postman API key" } ] }
  2. Install an MCP-compatible VS Code extension, such as GitHub Copilot, Claude for VS Code, or other AI assistants that support MCP.
Configure the extension

Configure the extension to use the postman-api-mcp server, a local STDIO-based server that runs directly from your project files:

  1. Clone the postman-mcp-server repository.
  2. In the repository's root folder, run the npm install command. This installs all the required dependencies.
  3. Replace ${workspaceFolder} in the mcp.json file with the full path to the Postman MCP repository.
  4. When prompted, enter your Postman API key.

Claude integration

To integrate the MCP server with Claude, check the latest Postman MCP server release and download one of the following .dxt files:

  • postman-api-mcp-minimal.dxt - Contains 37 essential tools for basic Postman operations.
  • postman-api-mcp-full.dxt - Contains all 106+ tools for comprehensive Postman functionality.

For more information, see Anthropic's Claude Desktop Extensions documentation.

Streamable HTTP

The streamable HTTP version is available at https://mcp.postman.com. It supports two tool configurations to better serve different use cases:

  • Minimal — Only includes essential tools for basic Postman operations, available at https://mcp.postman.com/minimal. This offers faster performance and simplifies use for those who only need basic Postman operations.
  • Full — Includes all available Postman API tools (100+ tools), available at https://mcp.postman.com/mcp.

Note: The streamable EU HTTP server is available at https://mcp.eu.postman.com.

Cursor integration

To integrate the MCP server with Cursor, click the following button:

Ensure the Authorization header uses the Bearer format.

VS Code integration

By default, the server provides 37 tools. Use Full (https://mcp.postman.com/mcp) mode to access all 106 tools.

To install in VS Code, you can use the Postman VS Code Extension. Or you can add the following to the .vscode/mcp.json file:

{ "servers": { "postman-api-http-server": { "type": "http", "url": "https://mcp.postman.com/{minimal | mcp}", // choose "minimal" or "mcp" "headers": { "Authorization": "Bearer ${input:postman-api-key}" } } }, "inputs": [ { "id": "postman-api-key", "type": "promptString", "description": "Enter your Postman API key" } ] }

When prompted, enter your Postman API key. Afterwards, the agent performs calls to the Postman cloud MCP server at https://mcp.postman.com.

Migration from v1.x to v2.x

  • Tool naming changes - All tool names changed from kebab-case to camelCase. For example:
    • create-collectioncreateCollection
    • get-workspacesgetWorkspaces
    • delete-environmentdeleteEnvironment
  • Tool availability changes
    • The default (Minimal) behavior provides only 37 essential tools.
    • The --full flag provides access to all 106 tools.

Questions and support

-
security - not tested
A
license - permissive license
-
quality - not tested

hybrid server

The server is able to function both locally and remotely, depending on the configuration or use case.

Postman’s remote MCP server connects AI agents, assistants, and chatbots directly to your APIs on Postman. Use natural language to prompt AI to automate work across your Postman collections, environments, workspaces, and more.

  1. STDIO
    1. VS Code integration
    2. Claude integration
  2. Streamable HTTP
    1. Cursor integration
    2. VS Code integration
  3. Migration from v1.x to v2.x
    1. Questions and support

      Related MCP Servers

      • A
        security
        A
        license
        A
        quality
        An MCP server that generates AI agent tools from Postman collections and requests. This server integrates with the Postman API to convert API endpoints into type-safe code that can be used with various AI frameworks.
        Last updated -
        13
        MIT License
      • A
        security
        A
        license
        A
        quality
        An MCP server that helps AI assistants access text content from websites that implement bot detection, bridging the gap between what you can see in your browser and what the AI can access.
        Last updated -
        2
        49
        Apache 2.0
      • A
        security
        A
        license
        A
        quality
        A Model Context Protocol server that enables AI assistants to interact with Linear project management systems, allowing users to retrieve, create, and update issues, projects, and teams through natural language.
        Last updated -
        42
        763
        102
        MIT License
        • Apple
      • A
        security
        A
        license
        A
        quality
        An MCP server that allows AI assistants to utilize human capabilities by sending requests to humans and receiving their responses through a Streamlit UI.
        Last updated -
        7
        43
        MIT License

      View all related MCP servers

      MCP directory API

      We provide all the information about MCP servers via our MCP API.

      curl -X GET 'https://glama.ai/api/mcp/v1/servers/postmanlabs/postman-mcp-server'

      If you have feedback or need assistance with the MCP directory API, please join our Discord server