-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 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
{
"name": "@promstack-1/mcp-server",
"version": "1.0.2",
"description": "PromStack MCP Server - Connect Claude Desktop and other MCP clients to your prompts",
"type": "module",
"main": "src/index.js",
"bin": {
"promstack-mcp-server": "./bin/promstack-mcp.js",
"promstack-mcp": "./bin/promstack-mcp.js"
},
"scripts": {
"start": "node src/index.js",
"dev": "node src/index.js --debug"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"ai",
"prompts",
"promstack"
],
"author": "PromStack",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"node-fetch": "^3.3.2",
"zod": "^4.3.2"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/PromStack-1/mcp-server"
},
"bugs": {
"url": "https://github.com/PromStack-1/mcp-server/issues"
},
"homepage": "https://promstack.com"
}