Integrations
Postman Integration
Manage Postman workspaces, collections, and environments via the Postman API
The Postman integration provides access to manage Postman workspaces, collections, and environments via the Postman API through the Integrate MCP server.
Installation
The Postman integration is included with the SDK:
import { postmanIntegration } from "integrate-sdk/server";Setup
Add Postman to your server configuration. Provide credentials via environment variables or integration config:
import { createMCPServer, postmanIntegration } from "integrate-sdk/server";
export const { client: serverClient } = createMCPServer({
apiKey: process.env.INTEGRATE_API_KEY,
integrations: [
postmanIntegration({
// See configuration options below
}),
],
});Client-Side Usage
import { client } from "integrate-sdk";
const result = await client.postman.getMe({});
console.log(result);Environment Variables
POSTMAN_API_KEY(when supported by this integration)
Configuration Options
Prop
Type
Tools
postman_get_me
Get me
No parameters.
postman_list_workspaces
List workspaces
Prop
Type
postman_get_workspace
Get workspace
Prop
Type
postman_list_collections
List collections
Prop
Type
postman_get_collection
Get collection
Prop
Type
postman_delete_collection
Delete collection
Prop
Type
postman_list_environments
List environments
Prop
Type
postman_get_environment
Get environment
Prop
Type
postman_create_collection
Create collection
Prop
Type
Notes
- Category: Engineering
- Authentication mode: API key