mcp-java-backend-suite 0.1.0
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/LICENSE +21 -0
- package/README.md +75 -0
- package/bin/config.js +50 -0
- package/package.json +55 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Dmytro Lisnichenko
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# MCP Java Backend Suite
|
|
2
|
+
|
|
3
|
+
Complete MCP toolkit for Java backend developers. 35 tools across 5 servers — install once, configure once.
|
|
4
|
+
|
|
5
|
+
## What's Included
|
|
6
|
+
|
|
7
|
+
| Server | Tools | What It Does |
|
|
8
|
+
|--------|-------|-------------|
|
|
9
|
+
| [mcp-db-analyzer](https://www.npmjs.com/package/mcp-db-analyzer) | 9 | PostgreSQL, MySQL, SQLite schema analysis, index optimization, query plans, slow queries, connections, table relationships |
|
|
10
|
+
| [mcp-jvm-diagnostics](https://www.npmjs.com/package/mcp-jvm-diagnostics) | 6 | Thread dump analysis, deadlock detection, GC log analysis, heap histogram analysis, heap diff comparison |
|
|
11
|
+
| [mcp-migration-advisor](https://www.npmjs.com/package/mcp-migration-advisor) | 6 | Flyway/Liquibase migration risk analysis, lock detection, data loss detection, rollback generation |
|
|
12
|
+
| [mcp-spring-boot-actuator](https://www.npmjs.com/package/mcp-spring-boot-actuator) | 7 | Health, metrics, environment, beans, startup, and cache analysis |
|
|
13
|
+
| [mcp-redis-diagnostics](https://www.npmjs.com/package/mcp-redis-diagnostics) | 7 | Memory fragmentation, slowlog analysis, client connections, keyspace health, unified performance report |
|
|
14
|
+
|
|
15
|
+
## Why the Suite?
|
|
16
|
+
|
|
17
|
+
Installing 5 MCP servers individually means 5 packages to manage, 5 config blocks to write, and 5 things to keep updated. The suite gives you everything in one install:
|
|
18
|
+
|
|
19
|
+
- **DB Analyzer** — database schema analysis, index optimization, query plans, slow query detection
|
|
20
|
+
- **JVM Diagnostics** — thread dump analysis, deadlock detection, GC log parsing, heap profiling
|
|
21
|
+
- **Migration Advisor** — Flyway/Liquibase migration risk analysis, lock detection, rollback generation
|
|
22
|
+
- **Spring Boot Actuator** — health checks, metrics, environment, beans, startup and cache analysis
|
|
23
|
+
- **Redis Diagnostics** — memory fragmentation, slowlog analysis, client connections, keyspace health
|
|
24
|
+
|
|
25
|
+
That is 35 tools covering the full Java backend diagnostic stack. One `npm install`, one config block, zero friction.
|
|
26
|
+
|
|
27
|
+
## Quick Start
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npm install -g mcp-java-backend-suite
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
Then generate your Claude Desktop configuration:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
npx mcp-java-backend-suite config
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
Copy the output into `~/.claude/claude_desktop_config.json`.
|
|
40
|
+
|
|
41
|
+
## Claude Desktop Configuration
|
|
42
|
+
|
|
43
|
+
```json
|
|
44
|
+
{
|
|
45
|
+
"mcpServers": {
|
|
46
|
+
"db-analyzer": {
|
|
47
|
+
"command": "npx",
|
|
48
|
+
"args": ["-y", "mcp-db-analyzer"]
|
|
49
|
+
},
|
|
50
|
+
"jvm-diagnostics": {
|
|
51
|
+
"command": "npx",
|
|
52
|
+
"args": ["-y", "mcp-jvm-diagnostics"]
|
|
53
|
+
},
|
|
54
|
+
"migration-advisor": {
|
|
55
|
+
"command": "npx",
|
|
56
|
+
"args": ["-y", "mcp-migration-advisor"]
|
|
57
|
+
},
|
|
58
|
+
"spring-boot-actuator": {
|
|
59
|
+
"command": "npx",
|
|
60
|
+
"args": ["-y", "mcp-spring-boot-actuator"]
|
|
61
|
+
},
|
|
62
|
+
"redis-diagnostics": {
|
|
63
|
+
"command": "npx",
|
|
64
|
+
"args": ["-y", "mcp-redis-diagnostics"],
|
|
65
|
+
"env": {
|
|
66
|
+
"REDIS_URL": "redis://localhost:6379"
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
## License
|
|
74
|
+
|
|
75
|
+
MIT
|
package/bin/config.js
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const CONFIG = {
|
|
4
|
+
mcpServers: {
|
|
5
|
+
"db-analyzer": {
|
|
6
|
+
command: "npx",
|
|
7
|
+
args: ["-y", "mcp-db-analyzer"]
|
|
8
|
+
},
|
|
9
|
+
"jvm-diagnostics": {
|
|
10
|
+
command: "npx",
|
|
11
|
+
args: ["-y", "mcp-jvm-diagnostics"]
|
|
12
|
+
},
|
|
13
|
+
"migration-advisor": {
|
|
14
|
+
command: "npx",
|
|
15
|
+
args: ["-y", "mcp-migration-advisor"]
|
|
16
|
+
},
|
|
17
|
+
"spring-boot-actuator": {
|
|
18
|
+
command: "npx",
|
|
19
|
+
args: ["-y", "mcp-spring-boot-actuator"]
|
|
20
|
+
},
|
|
21
|
+
"redis-diagnostics": {
|
|
22
|
+
command: "npx",
|
|
23
|
+
args: ["-y", "mcp-redis-diagnostics"],
|
|
24
|
+
env: {
|
|
25
|
+
REDIS_URL: "redis://localhost:6379"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
const arg = process.argv[2];
|
|
32
|
+
|
|
33
|
+
if (arg === "config") {
|
|
34
|
+
console.log("\n📋 Claude Desktop Configuration\n");
|
|
35
|
+
console.log("Add this to ~/.claude/claude_desktop_config.json:\n");
|
|
36
|
+
console.log(JSON.stringify(CONFIG, null, 2));
|
|
37
|
+
console.log("\n---");
|
|
38
|
+
console.log("Or add individual servers from the snippet above.");
|
|
39
|
+
} else {
|
|
40
|
+
console.log("MCP Java Backend Suite — 35 tools for Java backend developers\n");
|
|
41
|
+
console.log("Included servers:");
|
|
42
|
+
console.log(" • mcp-db-analyzer — 9 tools (PostgreSQL, MySQL, SQLite analysis)");
|
|
43
|
+
console.log(" • mcp-jvm-diagnostics — 6 tools (thread dumps, GC logs, heap analysis)");
|
|
44
|
+
console.log(" • mcp-migration-advisor — 6 tools (Flyway/Liquibase risk analysis)");
|
|
45
|
+
console.log(" • mcp-spring-boot-actuator — 7 tools (health, metrics, env, beans, startup, caches)");
|
|
46
|
+
console.log(" • mcp-redis-diagnostics — 7 tools (memory, slowlog, clients, keyspace, performance)");
|
|
47
|
+
console.log("\nCommands:");
|
|
48
|
+
console.log(" npx mcp-java-backend-suite config — Print Claude Desktop configuration");
|
|
49
|
+
console.log(" npx mcp-java-backend-suite — Show this help");
|
|
50
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mcp-java-backend-suite",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Complete MCP suite for Java backend developers — database analysis, JVM diagnostics, migration risk, Spring Boot actuator analysis, and Redis diagnostics",
|
|
5
|
+
"author": "Dmytro Lisnichenko",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "./bin/config.js",
|
|
9
|
+
"bin": {
|
|
10
|
+
"mcp-java-backend-suite": "./bin/config.js"
|
|
11
|
+
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"postinstall": "echo '✓ MCP Java Backend Suite installed. Run: npx mcp-java-backend-suite config'"
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"bin/**/*.js",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE"
|
|
19
|
+
],
|
|
20
|
+
"keywords": [
|
|
21
|
+
"mcp",
|
|
22
|
+
"model-context-protocol",
|
|
23
|
+
"java",
|
|
24
|
+
"jvm",
|
|
25
|
+
"spring-boot",
|
|
26
|
+
"postgresql",
|
|
27
|
+
"mysql",
|
|
28
|
+
"database",
|
|
29
|
+
"diagnostics",
|
|
30
|
+
"migration",
|
|
31
|
+
"actuator",
|
|
32
|
+
"redis",
|
|
33
|
+
"ai",
|
|
34
|
+
"claude",
|
|
35
|
+
"suite"
|
|
36
|
+
],
|
|
37
|
+
"repository": {
|
|
38
|
+
"type": "git",
|
|
39
|
+
"url": "https://github.com/Dmitriusan/mcp-java-backend-suite"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/Dmitriusan/mcp-java-backend-suite#readme",
|
|
42
|
+
"bugs": {
|
|
43
|
+
"url": "https://github.com/Dmitriusan/mcp-java-backend-suite/issues"
|
|
44
|
+
},
|
|
45
|
+
"engines": {
|
|
46
|
+
"node": ">=18"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"mcp-db-analyzer": "^0.2.0",
|
|
50
|
+
"mcp-jvm-diagnostics": "^0.1.0",
|
|
51
|
+
"mcp-migration-advisor": "^0.2.0",
|
|
52
|
+
"mcp-spring-boot-actuator": "^0.1.0",
|
|
53
|
+
"mcp-redis-diagnostics": "^0.1.0"
|
|
54
|
+
}
|
|
55
|
+
}
|