The Postman MCP Server supports both remote servers through streamable HTTP and local servers with STDIO. The remote server is available at https://mcp.postman.com/ and https://mcp.eu.postman.com for the EU, and the local server is available in the Postman MCP Server GitHub repository. You can also fork the Postman MCP collection from the Postman Public Workspace.
Postman also offers servers as an npm package and as a Docker image.
Before getting started, ensure that you have a valid Postman API key.
The remote Postman MCP server offers the following tool configurations through streamable HTTP:
https://mcp.postman.com/minimal and https://mcp.eu.postman.com/minimal for EU users.https://mcp.postman.com/mcp and https://mcp.eu.postman.com/mcp for EU users.Click the button to install the remote Postman MCP Server in Cursor:
After installing, ensure that the Authorization header uses the Bearer $POSTMAN-API-KEY format.
To access Full mode, change the
urlvalue tohttps://mcp.postman.com/mcpin themcp.jsonfile.
To install the remote Postman MCP Server in VS Code, click the install button or use the Postman VS Code Extension:
To access Full mode, change the
urlvalue tohttps://mcp.postman.com/mcpin themcp.jsonfile.
You can use the Postman MCP Server with MCP-compatible extensions in Cursor VS Code, such as GitHub Copilot, Claude for VS Code, or other AI assistants that support MCP. To do so, add the following JSON block to the mcp.json configuration file:
{
"servers": {
"postman-api-http-server": {
"type": "sse",
"url": "https://mcp.postman.com/{minimal OR mcp}",
// Use "https://mcp.postman.com/mcp" for full or "https://mcp.postman.com/minimal" for minimal mode.
// For the EU server, use the "https://mcp.eu.postman.com" URL.
"headers": {
"Authorization": "Bearer ${input:postman-api-key}"
}
}
},
"inputs": [
{
"id": "postman-api-key",
"type": "promptString",
"description": "Enter your Postman API key"
}
]
}
Start the server. When prompted, enter your Postman API key.
To install the MCP server in Claude Code, run the following command in your terminal:
For Minimal mode:
claude mcp add --transport http postman https://mcp.postman.com/minimal --header "Authorization: Bearer <POSTMAN_API_KEY>"
For Full mode:
claude mcp add --transport http postman https://mcp.postman.com/mcp --header "Authorization: Bearer <POSTMAN_API_KEY>"
If remote MCP servers aren’t supported by your MCP host, you can install the Postman MCP Server to your local machine.
STDIO is a lightweight solution that’s ideal for integration with editors and tools like Visual Studio Code. Install an MCP-compatible VS Code extension, such as GitHub Copilot, Claude for VS Code, or other AI assistants that support MCP.
To run the server as a Node application, install Node.js before getting started.
The local server supports the following tool configurations:
--full flag to enable this configuration.Use the
--regionflag to specify the Postman API region (usoreu), or set thePOSTMAN_API_BASE_URLenvironment variable directly. By default, the server uses theusoption.
Click the button to install the local Postman MCP Server in Cursor:
By default, the server uses Full mode. To access Minimal mode, remove the --full flag from the mcp.json configuration file.
Click the button to install the local Postman MCP Server in VS Code:
By default, the server uses Full mode. To access Minimal mode, remove the --full flag from the mcp.json configuration file.
You can manually integrate your MCP server with VS Code to use it with extensions that support MCP. To do so, create a .vscode/mcp.json file in your project and add the following JSON block to it:
{
"servers": {
"postman-api-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"@postman/postman-mcp-server",
"--full" // (optional) Use this flag to enable full mode.
"--region us" // (optional) Use this flag to specify the Postman API region (us or eu). Defaults to us.
],
"env": {
"POSTMAN_API_KEY": "${input:postman-api-key}"
}
}
},
"inputs": [
{
"id": "postman-api-key",
"type": "promptString",
"description": "Enter your Postman API key"
}
]
}
To integrate the local Postman MCP Server with Claude, check the latest Postman MCP server release and get the .mcpb file:
postman-api-mcp-minimal.mcpbpostman-api-mcp-full.mcpbFor more information, see the Claude Desktop Extensions documentation.
To install the MCP server in Claude Code, run the following command in your terminal:
For Minimal mode:
claude mcp add postman -- npx @postman/mcp-server@latest --env POSTMAN_API_KEY=YOUR_KEY
For Full mode:
claude mcp add postman -- npx @postman/mcp-server@latest --full --env POSTMAN_API_KEY=YOUR_KEY
To install the MCP server as a Gemini CLI extension, run the following command in your terminal:
gemini extensions install https://github.com/postmanlabs/postman-mcp-server
To use the Postman MCP Server in Docker, you can use one of the following methods:
To install the Postman MCP Server in Docker, see the Postman MCP Server at Docker MCP Hub. Click + Add to Docker Desktop to automatically install it.
To run the Postman MCP Server image in Docker, run the following command in your terminal. Docker automatically discovers, downloads, and runs the Postman MCP Server image:
docker run -i -e POSTMAN_API_KEY="<your-secret-key>" mcp/postman
To build and run the server in Docker manually, run the docker build -t postman-api-mcp-stdio . command. Then, run one of the following commands, replacing $YOUR-POSTMAN-API-KEY with your Postman API key:
docker run -i -e POSTMAN_API_KEY="<your-secret-key>" postman-api-mcp-stdiodocker run -i -e POSTMAN_API_KEY="<your-secret-key>" postman-api-mcp-stdio --fullLast modified: 2025/10/01