Version: v0.2.0 An MCP server that provides access to the Postman API. Functionality is based on the official OpenAPI specification. For more information, see the Postman API documentation. This project is part of the Model Context Protocol (MCP) initiative from Anthropic. For more information, visit the MCP GitHub repository and the announcement on the Anthropic blog. Skip ahead to install instru
Add this skill
npx mdskills install delano/postman-mcp-serverComprehensive MCP server with extensive Postman API integration and excellent documentation
1# Postman MCP Server2[](https://smithery.ai/server/postman-api-server)3**Version:** v0.2.045An MCP server that provides access to the [Postman](https://www.postman.com/) API. Functionality is based on the [official OpenAPI specification](https://www.postman.com/postman/postman-public-workspace/documentation/i2uqzpp/postman-api). For more information, see the [Postman API documentation](https://www.postman.com/postman-public-workspace/).67This project is part of the Model Context Protocol (MCP) initiative from Anthropic. For more information, visit the [MCP GitHub repository](https://github.com/modelcontextprotocol) and the announcement on the [Anthropic blog](https://www.anthropic.com/news/model-context-protocol).89**[Skip ahead to install instructions](#installation)**101112131415> [!WARNING]16> This project is currently under active development. Please use with caution and expect breaking changes.1718> [!NOTE]19> AI Generated Code. I used Cline v2.2.2 with Claude 3.5 Sonnet (2024-10-22). See docs/README.md for prompts and details about how this code was generated.2021<a href="https://glama.ai/mcp/servers/zoig549xfd"><img width="380" height="200" src="https://glama.ai/mcp/servers/zoig549xfd/badge" alt="postman-mcp-server MCP server" /></a>2223---2425* [Overview](#overview)26* [Features](#features)27 * [Collections](#collections)28 * [Environments](#environments)29 * [APIs](#apis)30 * [Authentication \& Authorization](#authentication--authorization)31 * [Additional Features](#additional-features)32* [Installation](#installation)33 * [Prerequisites](#prerequisites)34 * [Steps](#steps)35* [Usage](#usage)36 * [Setting up API Keys](#setting-up-api-keys)37 * [Using Claude Desktop](#using-claude-desktop)38 * [Using Cline](#using-cline)39 * [Using Zed](#using-zed)40* [Documentation](#documentation)41 * [Project Overview](#project-overview)42* [Rationale](#rationale)43* [Development](#development)44* [Debugging](#debugging)45* [Other MCP Servers](#other-mcp-servers)46* [License](#license)4748## Overview4950Postman MCP Server is a TypeScript-based MCP server that integrates with the Postman API, providing comprehensive management of Postman collections, environments, and APIs.5152## Features5354### Collections55- **CRUD Operations**: Create, retrieve, update, and delete Postman collections.56- **Folder Management**: Organize requests into folders within collections.57- **Request Management**: Add, update, and delete requests within collections.58- **Response Management**: Manage responses associated with requests.59- **Version Control**: Fork, merge, and pull changes for collections.60- **Comments**: Add and manage comments on collections.6162### Environments63- **Manage Environments**: Create and retrieve environments for different setups.64- **CRUD Operations**: Full support for creating, updating, and deleting environments.6566### APIs67- **API Management**: Create, retrieve, update, and delete APIs.68- **Schema Support**: Manage API schemas with multi-file support.69- **Tagging**: Add and manage tags for APIs.70- **Comments**: Add and manage comments on APIs.7172### Authentication & Authorization73- **API Key Authentication**: Secure access using API keys.74- **Role-Based Access Control**: Manage permissions at workspace and collection levels.75- **Workspace Permissions**: Define permissions specific to workspaces.7677### Additional Features78- **Private API Network**: Manage elements and folders within a private API network.79- **Webhooks**: Create webhooks to trigger collections with custom payloads.80- **Enterprise Features**: Advanced role controls and SCIM support for enterprise environments.8182## Installation8384### Installing via Smithery8586To install Postman MCP Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/postman-api-server):8788```bash89npx -y @smithery/cli install postman-api-server --client claude90```9192### Prerequisites93- [Node.js](https://nodejs.org/) installed.9495### Steps96971. **Clone the repository:**98 ```bash99 git clone https://github.com/delano/postman-api-server.git100 cd postman-api-server101 ```1021032. **Install dependencies:**104 ```bash105 pnpm install106 ```1071083. **Build the server:**109 ```bash110 pnpm run build111 ```1121134. **Run in development mode with auto-rebuild:**114 ```bash115 pnpm run watch116 ```117118## Usage119120### Setting up API Keys1211221. **Generate your API Key**123 - Visit [Postman Account Settings](https://go.postman.co/settings/me/api-keys)124 - Click "Generate API Key"125 - Save the key securely - it won't be shown again1261272. **Configure the API Key**128 - Add the key to your environment as `POSTMAN_API_KEY`129 - For Claude Desktop or Cline, include it in your config file (see configuration examples below)130 - Never commit API keys to version control1311323. **Verify Access**133 - The API key provides access to all Postman resources you have permissions for134 - Test access by running a simple query (e.g., list workspaces)135136> [!NOTE]137> If you're using the [Postman API collection](https://www.postman.com/postman/postman-public-workspace/documentation/i2uqzpp/postman-api) directly, store your API key as a `postman-api-key` collection variable.138139### Using Claude Desktop140141To use with Claude Desktop, add the server config:142143- **macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json`144- **Windows:** `%APPDATA%/Claude/claude_desktop_config.json`145146> [!IMPORTANT]147> If you're updating this provider, Claude must be restarted to pick up API changes from the input schema (i.e. When the MCP server's ToolDefinition elements have changed). This is because Claude caches the tool definitions when it starts up.148149<img width="480" alt="claude-desktop-settings" src="https://github.com/user-attachments/assets/7ea7cba2-e27e-413a-a50a-590054d51344" />150151#### Example configuration152153```json154{155 "mcpServers": {156 "postman": {157 "command": "node",158 "args": [159 "/path/to/postman-api-server/build/index.js"160 ],161 "env": {162 "POSTMAN_API_KEY": "CHANGEME"163 }164 }165 }166}167```168169### Using Cline170171Using the same example configuration, add the server config to your Cline MCP Servers configuration:172173<img width="480" alt="cline-settings" src="https://github.com/user-attachments/assets/651ec517-9aa2-4314-84f5-bee716aa8889" />174175176#### Example configuration177178_Same as Claude above._179180### Using Zed181182I'm still trying to get this to work. From the [Zed docs](https://zed.dev/docs/assistant/model-context-protocol) it looks like it needs to be an extension ([also this issue #21455](https://github.com/zed-industries/zed/discussions/21455)).183184---185186## Documentation187188The official [Postman API documentation](https://learning.postman.com/docs/developer/postman-api/intro-api/) is available in the [Postman Public Workspace](https://www.postman.com/postman/postman-public-workspace/).189190### Project Overview191192#### Postman API References & Summaries193194This project leverages the Claude model and Cline extension to convert the OpenAPI specification into TypeScript code, enhancing type safety and integration within the MCP server.195196This GitHub project includes [API References documentation](docs/api/references/README.md) that provides detailed guidance on utilizing the Postman platform programmatically. It covers both the Collection SDK for local development and the Postman API for cloud platform integration. Key topics include authentication mechanisms, rate limits, and in-depth documentation of all API endpoints, including workspaces, collections, environments, mock servers, monitors, and more. Additionally, the guide offers prerequisites and quick-start instructions to facilitate seamless API interactions.197198The `docs/api/summaries` directory contains comprehensive Markdown summaries of the Postman API. These documents outline API endpoints, request/response formats, and implementation details essential for validating and ensuring the functionality of the MCP server. Refer to the [API Summaries README](docs/api/summaries/README.md) for an overview of the documentation structure and implementation strategies.199200#### Converting OpenAPI Spec to TypeScript Code with Claude201202203204#### Building the MCP Server205206Refer to the [Handlers Documentation](src/handlers/README.md) for detailed specifications on implementing MCP server handlers. This includes URI formats, prompt requirements, and resource handling patterns. This guide is crucial for developers working on integrating and enhancing the Postman API functionalities within the MCP server.207208209---210211## Rationale212213The MCP wrapper for Postman tools makes sense primarily as an AI interaction layer for complex, multi-step operations where structure and safety are paramount. However, it may be overengineered for simple operations where direct CLI or API usage would suffice. The MCP wrapper provides most value when:2142151. **Complex Operations**216- Managing multiple collections217- Coordinating environments218- Generating comprehensive reports2192202. **AI-Driven Automation**221- Automated testing workflows222- API documentation maintenance223- Environment management2242253. **Error-Sensitive Operations**226- Critical API testing227- Production deployments228- Compliance checking229230It provides less value for:2312321. **Simple Operations**233- Basic collection runs234- Single API calls235- Quick environment checks2362. **Direct CLI Usage**237- Developer-driven operations238- Local testing239- Quick iterations240241242## Development243244Install dependencies:245```bash246pnpm install247```248249Build the server:250```bash251pnpm run build252```253254For development with auto-rebuild:255```bash256pnpm run watch257```258259## Debugging260261Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector), available as a package script:262263```bash264pnpm run inspector265```266267[Docs](https://modelcontextprotocol.io/docs/tools/inspector)268269The Inspector will provide a URL to access debugging tools in your browser: http://localhost:5173. You will need to add the POSTMAN_API_KEY before connecting. Navigate to "Tools" to get started.270271## Other MCP Servers272273- [Awesome MCP Servers by AppCypher](https://github.com/appcypher/awesome-mcp-servers)274- [Awesome MCP Servers by PunkPeye](https://github.com/punkpeye/awesome-mcp-servers)275276## License277278This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.279
Full transparency — inspect the skill content before installing.