postman-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| POSTMAN_API_KEY | Yes | Your Postman API key |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_workspacesB | List all workspaces |
| get_workspaceA | Get detailed information about a specific workspace |
| create_workspaceC | Create a new workspace |
| update_workspaceB | Update an existing workspace |
| list_collectionsB | List all collections in a workspace |
| get_collectionB | Get detailed information about a specific collection |
| create_collectionB | Create a new collection |
| update_collectionB | Update collection metadata (name, description, variables) |
| delete_collectionB | Delete a Postman collection |
| add_requestC | Add a new request to a collection |
| update_requestA | Update an existing request in a collection |
| delete_requestB | Delete a request from a collection |
| list_environmentsC | List all environments |
| get_environmentA | Get detailed information about a specific environment |
| create_environmentC | Create a new environment |
| update_environmentB | Update an existing environment |
| delete_environmentC | Delete an existing environment |
| create_folderC | Create a new folder in a collection |
| delete_folderC | Delete a folder from a collection |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 19 tools
Each tool targets a distinct resource and action. Workspaces, collections, requests, environments, and folders are cleanly separated, with no two tools appearing to do the same thing. The CRUD operations for each resource are unambiguous.
The naming pattern is overwhelmingly consistent, using verb_noun in snake_case (e.g., list_workspaces, get_collection, update_environment). The only deviation is 'add_request' instead of 'create_request', which slightly disrupts the otherwise uniform create/update/delete pattern.
At 19 tools, the count is slightly above the ideal 3-15 range but still reasonable for the breadth of Postman resources covered. Each tool has a clear purpose, and none feel redundant or unnecessary.
Collections and environments have full CRUD coverage, but requests lack read/list operations, folders only support create/delete, and workspaces miss delete. These gaps create minor dead ends that agents may need to work around when managing certain resources.