
How to add Postman MCP Server to Cursor
Manage Postman collections, environments, and APIs through the Postman API. Paste the config into ~/.cursor/mcp.json and restart Cursor.
Last updated June 14, 2026 · 155★ · stdio · apikey
Cursor config for Postman MCP Server
npx -y @smithery/cli install postman-api-server --client claude{
"mcpServers": {
"postman-mcp-server": {
"command": "node",
"args": [
"/path/to/postman-api-server/build/index.js"
],
"env": {
"POSTMAN_API_KEY": "CHANGEME"
}
}
}
}Setup steps
- 1Open Cursor → Settings → MCP → Add new MCP server (or edit ~/.cursor/mcp.json directly).
- 2Paste the Postman MCP Server config below into the "mcpServers" object.
- 3Fill in placeholder secrets, then save.
- 4Cursor reloads MCP servers automatically — check Settings → MCP for a green status dot.
- 5Ask Cursor to use one of Postman MCP Server's tools to confirm it's connected.
Before you start
- Node.js installed
- A Postman API key set as POSTMAN_API_KEY
- Clone and build the repository with pnpm (pnpm install, pnpm run build)
What Postman MCP Server can do in Cursor
CollectionsCreate, retrieve, update, and delete Postman collections; manage folders, requests, and responses within collections; fork, merge, and pull changes for version control; and add/manage comments.
EnvironmentsCreate and retrieve environments for different setups, with full CRUD support for creating, updating, and deleting environments.
APIsCreate, retrieve, update, and delete APIs; manage API schemas with multi-file support; add and manage tags; and add/manage comments on APIs.
Authentication & AuthorizationAPI key authentication, role-based access control, and workspace-level permissions management.
WorkspacesManage Postman workspaces and workspace-specific permissions.
MocksManage Postman mock servers.
MonitorsManage Postman monitors for scheduled collection runs.
UsersRetrieve user and account information.
Security
Requires a Postman API key (POSTMAN_API_KEY). The key grants access to all Postman resources you have permissions for. Never commit API keys to version control. Generate a key at https://go.postman.co/settings/me/api-keys.
Postman MCP Server + Cursor FAQ
Where is the Cursor config file?
Cursor reads MCP servers from ~/.cursor/mcp.json. Paste the Postman MCP Server config there under the "mcpServers" key and restart the client.
Is Postman MCP Server safe to use with Cursor?
Requires a Postman API key (POSTMAN_API_KEY). The key grants access to all Postman resources you have permissions for. Never commit API keys to version control. Generate a key at https://go.postman.co/settings/me/api-keys.
How do I authenticate?
Generate a Postman API key at https://go.postman.co/settings/me/api-keys and provide it via the POSTMAN_API_KEY environment variable in your MCP client config.
Is this an official Postman product?
No. It is a community project by delano, built on Postman's official OpenAPI specification. It is part of the broader MCP initiative and licensed under MIT.
How do I install it?
You can install it for Claude Desktop automatically via Smithery (npx -y @smithery/cli install postman-api-server --client claude), or clone the repo and build it with pnpm, then point your MCP client at build/index.js with node.