-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathmanifest-code.json
More file actions
67 lines (67 loc) · 1.82 KB
/
manifest-code.json
File metadata and controls
67 lines (67 loc) · 1.82 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
{
"manifest_version": "0.2",
"version": "2.8.9",
"name": "postman-mcp-server-code",
"display_name": "Postman MCP Server (Code)",
"description": "Search for APIs and generate client code from Postman collections.",
"long_description": "Search public and internal API definitions and generate high-quality, well-organized client code for making API requests. Provide API context to AI agents for any task. All secured with your Postman API key.",
"author": {
"name": "Postman, Inc.",
"email": "help@postman.com",
"url": "https://www.postman.com"
},
"repository": {
"type": "git",
"url": "https://github.com/postmanlabs/postman-mcp-server"
},
"homepage": "https://github.com/postmanlabs/postman-mcp-server",
"documentation": "https://learning.postman.com/docs/developer/postman-api/postman-mcp-server/overview",
"support": "https://github.com/postmanlabs/postman-api-mcp/issues",
"icon": "icon.png",
"server": {
"type": "node",
"entry_point": "dist/src/index.js",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/dist/src/index.js",
"--code"
],
"env": {
"POSTMAN_API_KEY": "${user_config.postman_api_key}"
}
}
},
"keywords": [
"postman",
"api",
"mcp",
"postman-api",
"collections",
"code-generation",
"codegen",
"sdk"
],
"license": "Apache-2.0",
"user_config": {
"postman_api_key": {
"type": "string",
"title": "Postman API Key",
"description": "A valid Postman API key used to authenticate requests.",
"sensitive": true,
"required": true
}
},
"compatibility": {
"claude_desktop": ">=0.10.0",
"platforms": [
"darwin",
"win32",
"linux"
],
"runtimes": {
"node": ">=20.0.0"
}
},
"tools_generated": true
}