mcp-spring-boot-actuator 0.1.4 → 0.1.5
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 +3 -3
- package/build/analyzers/env-risk.js +1 -1
- package/build/index.js +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -184,10 +184,10 @@ Once configured, try these prompts in Claude:
|
|
|
184
184
|
|
|
185
185
|
## Part of the MCP Java Backend Suite
|
|
186
186
|
|
|
187
|
-
|
|
188
|
-
- [mcp-db-analyzer](https://www.npmjs.com/package/mcp-db-analyzer) — Database performance analysis
|
|
187
|
+
- [mcp-db-analyzer](https://www.npmjs.com/package/mcp-db-analyzer) — PostgreSQL/MySQL/SQLite schema analysis
|
|
189
188
|
- [mcp-jvm-diagnostics](https://www.npmjs.com/package/mcp-jvm-diagnostics) — Thread dump and GC log analysis
|
|
190
|
-
- [mcp-
|
|
189
|
+
- [mcp-redis-diagnostics](https://www.npmjs.com/package/mcp-redis-diagnostics) — Redis memory, slowlog, and client diagnostics
|
|
190
|
+
- [mcp-migration-advisor](https://www.npmjs.com/package/mcp-migration-advisor) — Flyway/Liquibase migration risk analysis
|
|
191
191
|
|
|
192
192
|
## Limitations & Known Issues
|
|
193
193
|
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
const SECRET_PATTERNS = [
|
|
11
11
|
/password/i, /secret/i, /api[._-]?key/i, /token/i,
|
|
12
12
|
/credential/i, /private[._-]?key/i, /access[._-]?key/i,
|
|
13
|
-
/auth/i, /jwt/i,
|
|
13
|
+
/auth/i, /jwt/i, /client[._-]?secret/i,
|
|
14
14
|
];
|
|
15
15
|
// Properties that should differ between dev and production
|
|
16
16
|
const PRODUCTION_CHECKS = [
|
package/build/index.js
CHANGED
|
@@ -40,7 +40,7 @@ Tools provided:
|
|
|
40
40
|
analyze_metrics Analyze JVM, HTTP, and DB pool metrics
|
|
41
41
|
analyze_env Detect exposed secrets and risky configurations
|
|
42
42
|
analyze_beans Detect circular dependencies and scope mismatches
|
|
43
|
-
analyze_startup Parse /startup endpoint for bean init times
|
|
43
|
+
analyze_startup Parse /startup endpoint for bean init times (Spring Boot 2.4+)
|
|
44
44
|
analyze_caches Analyze /caches endpoint for cache health
|
|
45
45
|
analyze_loggers Detect verbose logging and misconfigurations`);
|
|
46
46
|
process.exit(0);
|
|
@@ -229,7 +229,7 @@ server.tool("analyze_beans", "Analyze Spring Boot Actuator /beans endpoint respo
|
|
|
229
229
|
}
|
|
230
230
|
});
|
|
231
231
|
// Tool 5: analyze_startup
|
|
232
|
-
server.tool("analyze_startup", "Analyze Spring Boot Actuator /startup endpoint (Spring Boot
|
|
232
|
+
server.tool("analyze_startup", "Analyze Spring Boot Actuator /startup endpoint (Spring Boot 2.4+). Detects slow bean initialization, heavy auto-configurations, and startup bottlenecks.", {
|
|
233
233
|
json: z.string().describe("JSON response from the /startup endpoint (curl http://localhost:8080/actuator/startup)"),
|
|
234
234
|
}, async ({ json }) => {
|
|
235
235
|
try {
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-spring-boot-actuator",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "MCP server for Spring Boot Actuator analysis — health, metrics, environment, and bean diagnostics",
|
|
5
|
-
"mcpName": "
|
|
5
|
+
"mcpName": "io.github.dmitriusan/mcp-spring-boot-actuator",
|
|
6
6
|
"main": "build/index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"mcp-spring-boot-actuator": "build/index.js"
|