Postman Api MCP Server

Postman MCP Server — connect AI agents (Claude Code, Cursor, VS Code Copilot, Gemini CLI) to your Postman collections, specifications, and

Remote serverstreamable-httpTypeScript

What is the Postman Api MCP MCP server?

If you want an AI assistant working directly with Postman Api MCP, the postman api mcp mcp server is the bridge. Postman MCP Server — connect AI agents (Claude Code, Cursor, VS Code Copilot, Gemini CLI) to your Postman collections, specifications, and environments via Model Context Protocol (MCP).

What Postman Api MCP does

The Postman MCP Server implements the Model Context Protocol (MCP) to connect AI agents and coding assistants — including Claude Code, Cursor, VS Code Copilot, GitHub Copilot CLI, and Gemini CLI — directly to your Postman workspaces, collections, specifications, and environments.

Tools it exposes

Once connected, the assistant can call these 7 tools directly:

  • Minimal — (Default) Only includes essential tools for basic Postman operations. Ideal for users who want to modify a single Postman element, such as collections
  • Code — Includes tools to generate high-quality, well-organized client code from public and internal API definitions. Ideal for users who need to consume APIs or get
  • Full — Includes all available Postman API tools (100+ tools). Ideal for users who engage in advanced collaboration and Postman's Enterprise features
  • Learn — Searches Postman Docs for guides, tutorials, and reference content. Ideal for agents who need to discover Postman features
  • CursorDocs
  • CodexDocs
  • KiroDocs

Installing the postman api mcp mcp server

The server is distributed via npm as @postman/postman-mcp-server, so most clients can run it without a manual build step. Add it to your MCP client's configuration and restart the client to pick it up — the copy-paste configs for Claude Desktop, Claude Code and Cursor are on this page.

Configuration

Before the server will start you need to supply 2 environment variables: POSTMAN_API_KEY, POSTMAN_API_BASE_URL. Keep credentials in your client's env block or a secrets manager rather than committing them.

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Postman Api MCP sits in that group, and the shape of its toolset — Minimal, Code, Full among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This is a hosted server — you point your client at an endpoint rather than running a local process, so there is nothing to keep updated on your machine.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • With 7 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use Postman Api MCP.
  • Maintained by postmanlabs, written in TypeScript.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the postman api mcp mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
Minimal(Default) Only includes essential tools for basic Postman operations. Ideal for users who want to modify a single Postman element, such as collections, workspaces, or environments.
CodeIncludes tools to generate high-quality, well-organized client code from public and internal API definitions. Ideal for users who need to consume APIs or get API context to their agents.
FullIncludes all available Postman API tools (100+ tools). Ideal for users who engage in advanced collaboration and Postman's Enterprise features.
LearnSearches [Postman Docs](https://learning.postman.com/) for guides, tutorials, and reference content. Ideal for agents who need to discover Postman features, look up API concepts, or find learning resources.
Cursor[Docs](https://learning.postman.com/docs/reference/postman-api/postman-mcp-server/postman-mcp-remote-server#cursor)
Codex[Docs](https://learning.postman.com/docs/reference/postman-api/postman-mcp-server/postman-mcp-remote-server#codex)
Kiro[Docs](https://learning.postman.com/docs/reference/postman-api/postman-mcp-server/postman-mcp-remote-server#kiro)

How to install the Postman Api MCP MCP server

{
  "mcpServers": {
    "postman-api": {
      "command": "npx",
      "args": ["-y", "@postman/postman-mcp-server"],
      "env": {
        "POSTMAN_API_KEY": "your-value",
        "POSTMAN_API_BASE_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
POSTMAN_API_KEYCredential the server authenticates with.Yes
POSTMAN_API_BASE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Postman Api MCP to Minimal.
  • Use Postman Api MCP to Code.
  • Use Postman Api MCP to Full.

Frequently asked questions

It connects Postman Api MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (Minimal, Code, Full, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Postman Api MCP directly.