-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcom.postman-mcp-docker.json
More file actions
72 lines (72 loc) · 2.12 KB
/
Copy pathcom.postman-mcp-docker.json
File metadata and controls
72 lines (72 loc) · 2.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.postman-mcp-docker",
"name": "Postman (Docker)",
"alias": "postman-docker",
"description": "Manage Postman collections, workspaces, environments, and API specifications via Docker. Search APIs, generate client code, and run collections.",
"icon": "https://avatars.githubusercontent.com/u/10251060?v=4",
"schema_version": "2.1",
"categories": [
"developer-tools"
],
"tags": [
"postman",
"api",
"testing",
"collections",
"docker"
],
"transport": {
"type": "stdio",
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "POSTMAN_API_KEY",
"mcp/postman"
],
"env": {
"POSTMAN_API_KEY": "${input:POSTMAN_API_KEY}"
},
"metadata": {
"inputs": [
{
"id": "POSTMAN_API_KEY",
"label": "Postman API Key",
"description": "API key for the Postman API. Required to access your workspaces, collections, and environments.",
"type": "text",
"required": true,
"secret": true,
"placeholder": "PMAK-xxxxxxxxxxxxxxxxxxxxxxxx",
"obtain": {
"url": "https://go.postman.co/settings/me/api-keys",
"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",
"button_label": "Generate API Key"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Generate a Postman API key at https://go.postman.co/settings/me/api-keys"
},
"contributor": {
"name": "Postman",
"github": "postmanlabs",
"url": "https://www.postman.com"
},
"links": {
"repository": "https://github.com/postmanlabs/postman-mcp-server",
"homepage": "https://www.postman.com",
"documentation": "https://learning.postman.com/docs/developer/postman-api/postman-mcp-server/set-up-postman-mcp-server"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
}
}