================== /// MCP /// /// POS /// ================== [server:online] [protocol:ready]
postman-mcp-server
by delano
TypeScript-based MCP server that exposes the full Postman API (collections, environments, APIs, webhooks, etc.) over the Model Context Protocol.
120
20
Open SourceInstallation
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
Documentation
License: MIT License
Updated 7/30/2025