Skip to content

Commit ae34d25

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for POSTMAN_API_KEY)
1 parent 1ca5c7b commit ae34d25

1 file changed

Lines changed: 19 additions & 11 deletions

File tree

servers/com.postman-mcp.json

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,24 @@
66
"description": "Manage Postman collections, workspaces, environments, and API specifications. Search APIs, generate client code, and run collections.",
77
"icon": "https://avatars.githubusercontent.com/u/10251060?v=4",
88
"schema_version": "2.1",
9-
"categories": ["developer-tools"],
10-
"tags": ["postman", "api", "testing", "collections", "api-specs", "code-generation"],
11-
9+
"categories": [
10+
"developer-tools"
11+
],
12+
"tags": [
13+
"postman",
14+
"api",
15+
"testing",
16+
"collections",
17+
"api-specs",
18+
"code-generation"
19+
],
1220
"transport": {
1321
"type": "stdio",
1422
"command": "npx",
15-
"args": ["-y", "@postman/postman-mcp-server@latest"],
23+
"args": [
24+
"-y",
25+
"@postman/postman-mcp-server@latest"
26+
],
1627
"env": {
1728
"POSTMAN_API_KEY": "${input:POSTMAN_API_KEY}"
1829
},
@@ -22,7 +33,7 @@
2233
"id": "POSTMAN_API_KEY",
2334
"label": "Postman API Key",
2435
"description": "API key for the Postman API. Required to access your workspaces, collections, and environments.",
25-
"type": "password",
36+
"type": "text",
2637
"required": true,
2738
"secret": true,
2839
"placeholder": "PMAK-xxxxxxxxxxxxxxxxxxxxxxxx",
@@ -35,26 +46,23 @@
3546
]
3647
}
3748
},
38-
3949
"auth": {
4050
"type": "api_key",
4151
"instructions": "Generate a Postman API key at https://go.postman.co/settings/me/api-keys"
4252
},
43-
4453
"contributor": {
4554
"name": "Postman",
4655
"github": "postmanlabs",
4756
"url": "https://www.postman.com"
4857
},
49-
5058
"links": {
5159
"repository": "https://github.com/postmanlabs/postman-mcp-server",
5260
"homepage": "https://www.postman.com",
5361
"documentation": "https://learning.postman.com/docs/developer/postman-api/postman-mcp-server/set-up-postman-mcp-server"
5462
},
55-
56-
"platforms": ["all"],
57-
63+
"platforms": [
64+
"all"
65+
],
5866
"capabilities": {
5967
"tools": true,
6068
"resources": false,

0 commit comments

Comments
 (0)