The Postman MCP server supports both streamable HTTP and STDIO. The streamable HTTP server is available at https://mcp.postman.com/
, and the STDIO server is available in Postman's MCP server GitHub repository. You can also fork the Postman MCP collection from the Postman Public Workspace.
Before getting started, you'll need to generate a Postman API key.
The streamable HTTP Postman MCP server offers the following tool configuration modes:
https://mcp.postman.com/minimal
) provides the 37 essential tools for common Postman operations.https://mcp.postman.com/mcp
) to access all available Postman tools.Other AI-integrated development environments will follow similar setup instructions.
Ensure that the Authorization header uses the
Bearer $POSTMAN-API-KEY
format.
Click the following button to integrate the Postman MCP server with Cursor:
By default, the server provides 37 tools. Use Full (
https://mcp.postman.com//mcp
) mode to access all 106 tools.
You can integrate the Postman MCP server with MCP-compatible extensions, such as GitHub Copilot, Claude for VS Code, or other AI assistants that support MCP. To install the Postman MCP server in VS Code, you can use the Postman VS Code extension.
To integrate with other MCP-compatible extensions, do the following:
Install an MCP-compatible extension.
Create a "mcp.json" file in your project's .vscode
directory.
Add the following to the .vscode/mcp.json file to set up the streamable HTTP transport:
{
"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.
"headers": {
"Authorization": "Bearer ${input:postman-api-key}"
}
}
},
"inputs": [
{
"id": "postman-api-key",
"type": "promptString",
"description": "Enter your Postman API key"
}
]
}
Start the server. You can do this from the MCP setup file in VS Code.
When prompted, enter your Postman API key.
The STDIO Postman MCP server is a lightweight, ideal integration solution for editors and tools such as VS Code or Cursor.
By default, the server provides 37 tools. Use the
--full
flag to access all 106 tools.
To get started with the STDIO Postman MCP server, do the following:
Create a .vscode/mcp.json file in your project and add 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"
}
]
}
Install an MCP-compatible VS Code extension, such as GitHub Copilot, Claude for VS Code, or other AI assistants that support MCP.
Configure your extension to use the MCP server:
npm install
command. This compiles the server code in the dist folder.${workspaceFolder}
in the mcp.json file with the full path to the Postman MCP repository.To integrate the STDIO Postman MCP server with Claude, check the latest Postman MCP server release and get the .dxt
file. For more information, see the Claude Desktop Extensions documentation.
To run the STDIO Postman MCP server in Docker, do the following:
docker build -t postman-api-mcp-stdio .
command.docker run -i -e POSTMAN_API_KEY="$YOUR-POSTMAN-API-KEY" postman-api-mcp-stdio
command, replacing $YOUR-POSTMAN-API-KEY
with your Postman API key.Last modified: 2025/08/27