@yawlabs/caddy-mcp 2.4.0 → 2.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/package.json +17 -7
package/README.md
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/@yawlabs/caddy-mcp)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
[](https://github.com/YawLabs/caddy-mcp/stargazers)
|
|
6
|
+
[](https://x.com/TokenLimitNews)
|
|
6
7
|
|
|
7
8
|
**Manage Caddy web servers from Claude Code, Cursor, and any MCP client.** 18 tools + 4 resources covering every endpoint of Caddy's admin API — config, routes, reverse proxies, TLS, PKI, metrics, snapshots.
|
|
8
9
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yawlabs/caddy-mcp",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.1",
|
|
4
4
|
"mcpName": "io.github.YawLabs/caddy-mcp",
|
|
5
|
-
"description": "MCP server for
|
|
5
|
+
"description": "Caddy MCP server for Claude Code, Cursor, and any MCP client: admin API, config, routes, reverse proxy, TLS, PKI, metrics",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Yaw Labs <contact@yaw.sh> (https://yaw.sh)",
|
|
8
8
|
"type": "module",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"build": "tsup && tsc -p tsconfig.build.json",
|
|
29
29
|
"dev": "tsup --watch",
|
|
30
30
|
"test": "vitest run",
|
|
31
|
-
"lint": "
|
|
32
|
-
"lint:fix": "
|
|
31
|
+
"lint": "node scripts/lint.mjs check src/ bin/ scripts/",
|
|
32
|
+
"lint:fix": "node scripts/lint.mjs check --write src/ bin/ scripts/",
|
|
33
33
|
"typecheck": "node scripts/typecheck.mjs",
|
|
34
34
|
"typecheck:tsc": "tsc --noEmit",
|
|
35
35
|
"test:ci": "npm run build && npm test",
|
|
@@ -63,12 +63,22 @@
|
|
|
63
63
|
"node": ">=20"
|
|
64
64
|
},
|
|
65
65
|
"keywords": [
|
|
66
|
+
"caddy",
|
|
67
|
+
"caddy-mcp",
|
|
68
|
+
"caddy-server",
|
|
69
|
+
"caddyfile",
|
|
66
70
|
"mcp",
|
|
71
|
+
"mcp-server",
|
|
67
72
|
"model-context-protocol",
|
|
68
|
-
"caddy",
|
|
69
73
|
"reverse-proxy",
|
|
70
74
|
"web-server",
|
|
71
|
-
"
|
|
75
|
+
"admin-api",
|
|
76
|
+
"tls",
|
|
77
|
+
"acme",
|
|
78
|
+
"pki",
|
|
79
|
+
"prometheus",
|
|
80
|
+
"claude-code",
|
|
81
|
+
"cursor",
|
|
72
82
|
"devtools",
|
|
73
83
|
"ai"
|
|
74
84
|
],
|
|
@@ -79,5 +89,5 @@
|
|
|
79
89
|
"bugs": {
|
|
80
90
|
"url": "https://github.com/YawLabs/caddy-mcp/issues"
|
|
81
91
|
},
|
|
82
|
-
"homepage": "https://
|
|
92
|
+
"homepage": "https://yaw.sh/mcp-servers/caddy-mcp/"
|
|
83
93
|
}
|