From postman
Guides Postman MCP tool selection and usage, covering collections, environments, specs, mocks, and sync operations.
How this skill is triggered — by the user, by Claude, or both
Slash command
/postman:postman-knowledgeThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Reference for Postman concepts and MCP tool selection. Use this context when working with Postman MCP tools to make better decisions.
Reference for Postman concepts and MCP tool selection. Use this context when working with Postman MCP tools to make better decisions.
| Goal | Approach |
|---|---|
| Push code changes to Postman | Create/update spec in Spec Hub, then sync to collection |
| Consume a Postman API | Read collection + generate client code |
| Find an API | Search workspace collections in private network/user's workspaces/public network, then drill into details |
| Test an API | Run collection with runCollection |
| Create a fake API for frontend | Create mock server from collection with examples |
| Document an API | Analyze collection completeness, fill gaps, optionally publish |
| Audit API security | Run security checks against spec or collection |
Workspace operations: getWorkspaces, getWorkspace, createWorkspace
Collection CRUD: getCollections, getCollection, createCollection, putCollection, patchCollection, deleteCollection
Request/Response: getCollectionRequest, createCollectionRequest, updateCollectionRequest, getCollectionResponse, createCollectionResponse, updateCollectionResponse
Folder management: getCollectionFolder, createCollectionFolder, updateCollectionFolder
Spec Hub: getAllSpecs, getSpec, createSpec, getSpecDefinition, updateSpecFile, getSpecFiles
Sync: generateCollection, syncCollectionWithSpec, syncSpecWithCollection
Environments: getEnvironments, getEnvironment, createEnvironment, putEnvironment
Mocks: getMocks, getMock, createMock, publishMock, unpublishMock
Tests: runCollection
Docs: publishDocumentation, unpublishDocumentation
Search: searchPostmanElementsInPrivateNetwork (private/org APIs, default), searchPostmanElementsInPublicNetwork (public network), getTaggedEntities
User: getAuthenticatedUser
See mcp-limitations.md in this skill folder for known limitations and workarounds.
npx claudepluginhub anthropics/claude-plugins-official --plugin postmanAutomates API testing and collection management in Postman: creates workspaces, collections, environments, mocks, specs, and runs tests. Useful for OpenAPI generation, automated testing, and environment setup.
Discovers, explores, and generates client code from Postman API collections. Required before generating code from any collection, even if already explored via MCP tools.
Configures VSCode with httpYac for API testing: converts docs to .http files (10+ endpoints), auth pre-request scripts, response chaining, multi-file envs, Git CI/CD workflows.