Install
$ agentstack add skill-postman-devrel-agent-skills-postman ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ● Network access Used
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ● Environment & secrets Used
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Postman Agent Skill
Full API lifecycle management through the Postman MCP Server. Sync specs, generate code, run tests, create mocks, publish docs, and audit security.
Version: 2.0.1 Requires: Postman MCP Server
Prerequisites
This skill requires the Postman MCP Server to be configured. The MCP server exposes 111+ tools for interacting with Postman workspaces, collections, specs, environments, mocks, monitors, and more.
Setup check: Call getAuthenticatedUser via MCP. If it succeeds, you're connected. If it fails, walk through Setup below.
Important: MCP Tool Behavior
Before using the workflows below, be aware of these behaviors:
getWorkspacesreturns ALL workspaces. For large organizations this can be 300KB+. If you already have a workspace ID, usegetWorkspace(workspaceId)directly instead.getCollectiondefault response is a lightweight map withitemRefs(folder/request tree). This is efficient for discovery. Only usemodel=fullwhen you need complete request/response bodies, and be aware it can exceed 300KB for large collections. Prefer targetedgetCollectionRequestandgetCollectionResponsecalls for specific endpoints.getTaggedEntitiesreturns 404 for missing tags, not an empty array. Handle this gracefully. Tag functionality may require an Enterprise plan.runCollectionreturns aggregate results only (total requests, passed, failed, duration). It does NOT return per-request detail or error messages. For debugging specific failures, examine individual requests withgetCollectionRequestandgetCollectionResponseafter the run.searchPostmanElementsonly searches the PUBLIC Postman network, not private workspaces. Always search private workspace first withgetCollections.
Setup
If MCP tools are not available or getAuthenticatedUser fails:
- Get a Postman API key:
- Go to https://postman.postman.co/settings/me/api-keys
- Click "Generate API Key", name it "Claude Code"
- Copy the key (starts with PMAK-)
- Set the environment variable:
`` export POSTMAN_API_KEY=PMAK-your-key-here ` Add to ~/.zshrc or ~/.bashrc` to persist.
- Verify: Call
getAuthenticatedUser. On success, callgetWorkspacesto list workspaces, thengetCollectionswith the workspace ID to count resources.
Present:
Connected as:
Your workspaces:
- My Workspace (personal) - 12 collections, 3 specs
- Team APIs (team) - 8 collections, 5 specs
You're all set.
Routing
When the user's request involves Postman or APIs, match their intent to the correct workflow below. Always prefer these structured workflows over raw MCP tool calls.
| User Intent | Workflow | |-------------|----------| | Import a spec, push spec to Postman, create collection from spec, sync, push changes | Sync Collections | | Generate client code, SDK, wrapper, typed client, consume an API | Generate Client Code | | Find API, search endpoints, what's available, discover APIs | Discover APIs | | Run tests, check if tests pass, validate API, test collection | Run Collection Tests | | Create mock server, fake API, mock for frontend, mock URL | Create Mock Servers | | Generate docs, improve documentation, publish docs, API docs | API Documentation | | Security audit, vulnerabilities, OWASP, security check | API Security Audit | | Is my API agent-ready?, scan my API, analyze spec for AI | Use the postman-api-readiness skill |
Routing rules:
- Specific workflows take priority. If intent clearly maps to one, use it.
- Ambiguous requests: ask the user what they need.
- Multi-step requests chain workflows. "Import my spec and run tests" = Sync then Test.
- Only use
mcp__postman__*tools directly for single targeted updates or when the user explicitly asks.
Workflow: Sync Collections
Keep Postman collections in sync with API code. Create new collections from OpenAPI specs, update existing ones, or push endpoint changes.
Step 1: Understand What Changed
Detect or ask:
- Is there a local OpenAPI spec? Search for
**/openapi.{json,yaml,yml},**/swagger.{json,yaml,yml} - Did the user add/remove/modify endpoints?
- Is there an existing Postman collection to update, or do they need a new one?
Step 2: Resolve Workspace
If the user provides a workspace ID, call getWorkspace(workspaceId) directly. Otherwise, call getCollections with a workspace ID if known, or ask the user which workspace to use. Avoid calling getWorkspaces (no filter) on large org accounts as it returns all workspaces (300KB+).
Step 3: Find or Create the Collection
Updating an existing collection:
- Call
getCollectionswith theworkspaceparameter - Match by name or ask which collection
- Call
getCollectionto get current state
Creating from a spec:
- Read the local OpenAPI spec
- Call
createSpecwithworkspaceId,name,type(one ofOPENAPI:2.0,OPENAPI:3.0,OPENAPI:3.1,ASYNCAPI:2.0), andfiles(array of{path, content}) - Call
generateCollectionfrom the spec. This is async (HTTP 202). PollgetGeneratedCollectionSpecsorgetSpecCollectionsuntil complete. - Call
createEnvironmentwith variables from the spec:
base_urlfromservers[0].url- Auth variables from
securitySchemes(mark assecret) - Common path parameters
Step 4: Sync
Spec to Collection (most common):
- Call
createSpecorupdateSpecFilewith local spec content - Call
syncCollectionWithSpecto update the collection. Async (HTTP 202). PollgetCollectionUpdatesTasksfor completion. - Note:
syncCollectionWithSpeconly supports OpenAPI 3.0. For Swagger 2.0 or OpenAPI 3.1, useupdateSpecFileand regenerate viagenerateCollection. - Report what changed
Collection to Spec (reverse sync):
- Call
syncSpecWithCollectionto update the spec from collection changes - Write the updated spec back to the local file
Manual updates (no spec):
createCollectionRequestto add new endpointsupdateCollectionRequestto modify existing onescreateCollectionFolderto organize by resourcecreateCollectionResponseto add example responses
Step 5: Confirm
Collection synced: "Pet Store API" (15 requests)
Added: POST /pets/{id}/vaccinations
Updated: GET /pets - added 'breed' filter parameter
Removed: (none)
Environment: "Pet Store - Development" updated
Spec Hub: petstore-v3.1.0 pushed
Workflow: Generate Client Code
Generate typed client code from Postman collections. Reads private API definitions and writes production-ready code matching the project's conventions.
Step 1: Find the API
- If workspace ID is known, call
getWorkspace(workspaceId)to get the full inventory (collections, specs, environments) in one call. Otherwise ask the user which workspace. - Call
getCollectionswithworkspaceparameter. Usenamefilter if specified. - If no results in private workspace, fall back to
searchPostmanElements(public network only) - Call
getCollectionfor the lightweight map (default, nomodelparam) - Call
getSpecDefinitionif a linked spec exists (richer type info)
Step 2: Understand the API Shape
For each relevant endpoint:
- Call
getCollectionFolderfor resource grouping - Call
getCollectionRequestfor method, URL, headers, auth, body schema, parameters - Call
getCollectionResponsefor status codes, response shapes, error formats - Call
getEnvironmentfor base URLs and variables - Call
getCodeGenerationInstructionsfor Postman-specific codegen guidance
Step 3: Detect Project Language
If not specified, detect from the project:
package.jsonortsconfig.json-> TypeScript/JavaScriptrequirements.txtorpyproject.toml-> Pythongo.mod-> GoCargo.toml-> Rustpom.xmlorbuild.gradle-> JavaGemfile-> Ruby
Step 3b: Check for Variable Mismatches
Compare collection variables with environment variables. Common issue: collection uses {{baseUrl}} but environment defines base_url (or vice versa). Flag any naming mismatches to the user before generating code, as these cause silent failures at runtime.
Step 4: Generate Code
Generate a typed client with:
- Method per endpoint with proper parameters
- Request/response types from collection schemas
- Authentication handling from collection auth config
- Error handling based on documented error responses
- Environment-based configuration (base URL from env vars)
- Pagination support if the API uses it
Code conventions:
- Match the project's existing style (imports, formatting, naming)
- Include JSDoc/docstrings from collection descriptions
- Use the project's HTTP library if one exists (axios, fetch, requests, etc.)
- Write to a sensible path (e.g.,
src/clients/.ts)
Step 5: Present
Generated: src/clients/users-api.ts
Endpoints covered:
GET /users -> getUsers(filters)
POST /users -> createUser(data)
GET /users/{id} -> getUser(id)
PUT /users/{id} -> updateUser(id, data)
DELETE /users/{id} -> deleteUser(id)
Types generated: User, CreateUserRequest, UpdateUserRequest, UserListResponse, ApiError
Auth: Bearer token (from USERS_API_TOKEN env var)
Base URL: from USERS_API_BASE_URL env var
Workflow: Discover APIs
Answer natural language questions about available APIs across Postman workspaces. Find endpoints, check response shapes, understand what's available.
Step 1: Search
- If workspace ID is known, call
getWorkspace(workspaceId)directly. Otherwise ask the user. - Call
getCollectionswithworkspaceparameter. Usenamefilter to narrow. - If sparse, broaden:
searchPostmanElementsas fallback (public network only, not private workspaces)- Note:
getTaggedEntitiesandgetCollectionTagsmay return 404/403 on non-Enterprise plans. Do not rely on these for discovery.
Step 2: Drill Into Results
For each relevant hit:
getCollectionfor overview (default returns lightweight map withitemRefs, not full payloads)- Scan endpoint names from the map to identify relevant folders/requests
getCollectionRequestfor specific relevant endpoints (targeted, not bulk)getCollectionResponsefor specific response datagetSpecDefinitionif linked spec exists
Step 3: Present
Found:
Yes, you can get a user's email via the API.
Endpoint: GET /users/{id}
Collection: "User Management API"
Auth: Bearer token required
Response includes:
{ "id": "usr_123", "email": "jane@example.com", "name": "Jane Smith" }
Want me to generate a client for this API?
Not found: Show closest matches and explain why they don't match.
Multiple results: List collections with endpoint counts, ask which to explore.
Workflow: Run Collection Tests
Execute Postman collection tests, analyze results, diagnose failures, and suggest fixes.
Step 1: Find the Collection
- If workspace ID is known, call
getWorkspace(workspaceId)directly. Otherwise ask the user. - Call
getCollectionswithworkspaceparameter. Usenamefilter if specified.
Step 2: Run Tests
Call runCollection with the collection UID in OWNER_ID-UUID format (from getCollection response's uid field).
If environment variables are needed:
- Call
getEnvironmentsto list available environments - Ask which to use or detect from naming convention
- Pass the environment ID to
runCollection
Step 3: Parse Results
Note: runCollection returns aggregate results only (total requests, passed/failed counts, duration). It does NOT include per-request detail. Present what's available:
Test Results: Pet Store API
Requests: 15 executed
Failed: 3
Assertions: 24 total, 21 passed
Duration: 12.4s
If tests failed and per-request detail is needed, examine the collection's test scripts and request definitions with getCollectionRequest to help diagnose. The user may also need to check the Postman app or a monitor run for detailed failure logs.
Step 4: Diagnose Failures
For each failure:
getCollectionRequestfor full request definitiongetCollectionResponsefor expected responses- Check if API source code is in the current project
- Explain expected vs actual
- If code is local, find the handler and suggest the fix
Step 5: Fix and Re-run
After fixing: offer to re-run and show before/after comparison.
Step 6: Update Collection (if needed)
If the tests themselves need updating:
updateCollectionRequestto fix request bodies, headers, or test scriptsupdateCollectionResponseto update expected responses
Workflow: Create Mock Servers
Spin up a Postman mock server from a collection or spec. Get a working mock URL for frontend development, integration testing, or demos.
Step 1: Find the Source
If workspace ID is known, call getWorkspace(workspaceId) directly. Otherwise ask the user.
From existing collection: getCollections with workspace ID -> select target collection
From local spec: Import first:
createSpecwith workspace, name, type, filesgenerateCollection. Async (HTTP 202). PollgetGeneratedCollectionSpecsorgetSpecCollectionsfor completion.
Step 2: Check for Examples
Mock servers serve example responses. Call getCollection and check if requests have saved responses.
If missing, generate realistic examples:
getCollectionRequestfor each request's schema- Generate realistic example response from the schema
createCollectionResponseto save the example
Step 3: Check for Existing Mocks
Call getMocks to check if one already exists for this collection. If found, present its URL. Only create new if none exists or explicitly requested.
Step 4: Create Mock Server
Call createMock with:
- Workspace ID
- Collection UID in
ownerId-collectionIdformat (fromgetCollectionresponse'suidfield) - Environment ID (if applicable)
- Name:
Mock - Private: false (or true if preferred)
Step 5: Present
Mock server created: "Pet Store API Mock"
URL: https://.mock.pstmn.io
Status: Active
Try it:
curl https://.mock.pstmn.io/pets
curl https://.mock.pstmn.io/pets/1
curl -X POST https://.mock.pstmn.io/pets -d '{"name":"Buddy"}'
The mock serves example responses from your collection.
Update examples in Postman to change mock behavior.
Step 6: Integration
Quick integration:
# Add to your project .env
API_BASE_URL=https://.mock.pstmn.io
# Or in your frontend config
const API_URL = process.env.API_BASE_URL || 'https://.mock.pstmn.io';
Step 7: Publish (optional)
If the user wants public access:
publishMockfor unauthenticated access (demos, hackathons, public docs)unpublishMockto make private again
Workflow: API Documentation
Analyze, improve, and publish API documentation from OpenAPI specs and Postman collections.
Step 1: Find the Source
Check for API definitions in order:
Local specs: Search for **/openapi.{json,yaml,yml}, **/swagger.{json,yaml,yml}
Postman specs: getAllSpecs with workspace ID, then getSpecDefinition for full spec
Postman collections: getCollections then getCollection for full detail
Step 2: Analyze Completeness
Documentation Coverage: 60%
Endpoints with descriptions: 8/15
Parameters with descriptions: 22/45
Endpoints with examples: 3/15
Error responses documented: 2/15
Authentication documented: Yes
Rate limits documented: No
Step 3: Generate or Improve
Sparse spec: Generate documentation for each endpoint (summaries, parameter tables, request/response schemas, examples, error docs, auth requirements).
Partial spec: Fill gaps (add missing descriptions inferred from naming/schemas, generate reali
…
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Postman-Devrel
- Source: Postman-Devrel/agent-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.