An MCP server for interacting with the Postman API, requiring an API key.
This project offers a single MCP-compatible server option:
See more about the Model Context Protocol available transports in the MCP specification.
You can integrate your MCP server with Visual Studio Code to use it with VS Code extensions that support MCP.
Create a .vscode/mcp.json
file in your project with the following configuration:
{
"servers": {
"postman-api-mcp": {
"type": "stdio",
"command": "node",
"args": [
"${workspaceFolder}/dist/src/index.js"
],
"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 && npm run build
. This compiles the server code in the dist
folder.${workspaceFolder}
in the mcp.json file with the full path to the Postman API MCP repository.When prompted, enter your Postman API key.
You can now use your Postman API tools with your VS Code extension through the MCP protocol.
See DOCKER.md for up-to-date build, Docker, and usage instructions.
If you prefer to use the HTTP version, it's available at http://mcp.postman.com. Here are the instructions to install it:
{
"servers": {
"postman-api-http-server": {
"type": "mcp",
"url": "https://mcp.postman.com/mcp",
"headers": {
"Authorization": "Bearer ${input:postman-api-key}"
}
}
},
"inputs": [
{
"id": "postman-api-key",
"type": "promptString",
"description": "Enter your Postman API key"
}
]
}
You will be asked to input your Postman API key. Afterwards, the agent performs calls to the Postman cloud MCP server (http://mcp.postman.com).
Open the claude_desktop_config.json file, which is accessible from Claude preferences. Then, add the following:
{
"mcpServers": {
"postman-api": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.postman-beta.com/mcp",
"--header",
"Authorization: Bearer PMAK-YOUR-POSTMAN-API-KEY"
]
}
}
}
A Python REPL with persistent sessions and automatic dependency management using uv.
A Grey Hack server for Cursor IDE, providing GitHub code search, Greybel-JS transpilation, API validation, and script generation.
A MCP Server that enhance your IDE with AI-powered assistance for Intlayer i18n / CMS tool: smart CLI access, versioned docs.
An MCP server for managing the software development lifecycle, with support for an optional external SQLite database.
Interacting with Phabricator API
MCP Server for automated reverse engineering with IDA Pro.
Provides access to OpenTelemetry traces and metrics through Logfire.
Integrates with Language Server Protocol (LSP) to provide features like code completion, diagnostics, and hover information.
A server for Zep, a long-term memory store for AI applications, requiring a ZEP_API_KEY for access.
MCP server to provide Jira Tickets information to AI coding agents like Cursor.