-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.26 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
{
"name": "rundeck-mcp-server",
"version": "1.0.4",
"mcpName": "io.github.mariomorenodev/rundeck-mcp-server",
"description": "The most comprehensive MCP server for Rundeck — manage jobs, executions, projects, nodes, and more from any MCP client",
"type": "module",
"main": "dist/index.js",
"bin": {
"rundeck-mcp-server": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"rundeck",
"model-context-protocol",
"claude",
"automation",
"devops",
"job-scheduler",
"runbook-automation"
],
"author": "mariomorenodev",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mariomorenodev/rundeck-mcp-server.git"
},
"homepage": "https://github.com/mariomorenodev/rundeck-mcp-server#readme",
"bugs": {
"url": "https://github.com/mariomorenodev/rundeck-mcp-server/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/node": "^22.15.3",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
}
}