Skip to content
Install
mcp-registry/postman-mcp-server
postman-mcp-server logo

postman-mcp-server

Author: delano

Description: TypeScript-based MCP server that exposes the full Postman API (collections, environments, APIs, webhooks, etc.) over the Model Context Protocol.

Stars: 120

Forks: 20

License: MIT License

Category: Open Source

Overview

Installation

1. Clone the repository:
git clone https://github.com/delano/postman-mcp-server.git cd postman-mcp-server
2. Install dependencies (Node ≥18 is recommended):
npm install
3. Copy the example environment file (if present) and add your Postman API key:
cp .env.example .env # then edit .env and set: POSTMAN_API_KEY=<your-postman-api-key> MCP_PORT=3030 # Port the MCP server will listen on
4. Build the TypeScript sources:
npm run build # compiles to ./dist
5. Start the server:
npm start # or: node dist/index.js
6. Verify the server is running:
curl http://localhost:3030/healthz Optional development mode (auto-reload): npm run dev # uses ts-node and nodemon
License: MIT License
Updated 7/30/2025