Skip to content

Commit 1ca5c7b

Browse files
committed
Add Postman MCP server definition
Official Postman MCP server for managing collections, workspaces, environments, and API specs. Uses @postman/postman-mcp-server npm package with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 0217546 commit 1ca5c7b

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

servers/com.postman-mcp.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.postman-mcp",
4+
"name": "Postman",
5+
"alias": "postman",
6+
"description": "Manage Postman collections, workspaces, environments, and API specifications. Search APIs, generate client code, and run collections.",
7+
"icon": "https://avatars.githubusercontent.com/u/10251060?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["developer-tools"],
10+
"tags": ["postman", "api", "testing", "collections", "api-specs", "code-generation"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@postman/postman-mcp-server@latest"],
16+
"env": {
17+
"POSTMAN_API_KEY": "${input:POSTMAN_API_KEY}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "POSTMAN_API_KEY",
23+
"label": "Postman API Key",
24+
"description": "API key for the Postman API. Required to access your workspaces, collections, and environments.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "PMAK-xxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://go.postman.co/settings/me/api-keys",
31+
"instructions": "1. Log in to postman.com\n2. Click your avatar > Settings > API keys\n3. Click 'Generate API Key'\n4. Name your key and click 'Generate'\n5. Copy the key",
32+
"button_label": "Generate API Key"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Generate a Postman API key at https://go.postman.co/settings/me/api-keys"
42+
},
43+
44+
"contributor": {
45+
"name": "Postman",
46+
"github": "postmanlabs",
47+
"url": "https://www.postman.com"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/postmanlabs/postman-mcp-server",
52+
"homepage": "https://www.postman.com",
53+
"documentation": "https://learning.postman.com/docs/developer/postman-api/postman-mcp-server/set-up-postman-mcp-server"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": false
63+
}
64+
}

0 commit comments

Comments
 (0)