@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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +17 -7
package/README.md CHANGED
@@ -3,6 +3,7 @@
3
3
  [![npm version](https://img.shields.io/npm/v/@yawlabs/caddy-mcp)](https://www.npmjs.com/package/@yawlabs/caddy-mcp)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
5
5
  [![GitHub stars](https://img.shields.io/github/stars/YawLabs/caddy-mcp)](https://github.com/YawLabs/caddy-mcp/stargazers)
6
+ [![Follow @TokenLimitNews on X](https://img.shields.io/badge/follow-%40TokenLimitNews-000000?logo=x&logoColor=white)](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.0",
3
+ "version": "2.4.1",
4
4
  "mcpName": "io.github.YawLabs/caddy-mcp",
5
- "description": "MCP server for managing Caddy web servers via the admin API",
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": "biome check src/ bin/ scripts/",
32
- "lint:fix": "biome check --write src/ bin/ scripts/",
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
- "mcp-server",
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://github.com/YawLabs/caddy-mcp"
92
+ "homepage": "https://yaw.sh/mcp-servers/caddy-mcp/"
83
93
  }