dejared-mcp 0.1.4 → 0.2.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.
@@ -12,7 +12,7 @@
12
12
  "name": "dejared",
13
13
  "source": "./",
14
14
  "description": "Explore, analyze, and decompile Java JAR files with structured workflows.",
15
- "version": "0.1.4",
15
+ "version": "0.2.0",
16
16
  "author": {
17
17
  "name": "HuynhKhanh1402"
18
18
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dejared",
3
3
  "description": "Explore, analyze, and decompile Java JAR files with structured workflows.",
4
- "version": "0.1.4",
4
+ "version": "0.2.0",
5
5
  "author": {
6
6
  "name": "HuynhKhanh1402"
7
7
  },
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  [![npm version](https://img.shields.io/npm/v/dejared-mcp?style=flat-square)](https://www.npmjs.com/package/dejared-mcp)
2
2
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue?style=flat-square)](LICENSE)
3
3
  [![Node.js](https://img.shields.io/badge/Node.js-18%2B-339933?style=flat-square&logo=node.js&logoColor=white)]()
4
- [![Java](https://img.shields.io/badge/Java-21%2B-ED8B00?style=flat-square&logo=openjdk&logoColor=white)]()
4
+ [![Java](https://img.shields.io/badge/Java-17%2B-ED8B00?style=flat-square&logo=openjdk&logoColor=white)]()
5
5
 
6
6
  # dejared-mcp
7
7
 
@@ -41,7 +41,7 @@ transport.
41
41
  ## Prerequisites
42
42
 
43
43
  - **Node.js** 18 or later
44
- - **Java** 21 or later (JRE is sufficient)
44
+ - **Java** 17 or later (JRE is sufficient)
45
45
 
46
46
  ## Quick Start
47
47
 
@@ -358,7 +358,7 @@ If you prefer to run the server JAR directly without Node.js:
358
358
 
359
359
  2. Run it:
360
360
  ```bash
361
- java -jar dejared-mcp-0.1.3.jar
361
+ java -jar dejared-mcp-0.2.0.jar
362
362
  ```
363
363
 
364
364
  3. Configure your MCP client to use the JAR directly instead of `npx`:
@@ -368,7 +368,7 @@ If you prefer to run the server JAR directly without Node.js:
368
368
  "mcpServers": {
369
369
  "dejared": {
370
370
  "command": "java",
371
- "args": ["-jar", "/path/to/dejared-mcp-0.1.3.jar"]
371
+ "args": ["-jar", "/path/to/dejared-mcp-0.2.0.jar"]
372
372
  }
373
373
  }
374
374
  }
@@ -437,7 +437,7 @@ tool. The default timeout is 30 seconds and can be adjusted via
437
437
 
438
438
  **Q: Which Java version do I need?**
439
439
 
440
- Java 21 or later. A JRE is sufficient; you do not need a full JDK.
440
+ Java 17 or later. A JRE is sufficient; you do not need a full JDK.
441
441
 
442
442
  **Q: Can I run the server without Node.js?**
443
443
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dejared-mcp",
3
- "version": "0.1.4",
3
+ "version": "0.2.0",
4
4
  "mcpName": "io.github.HuynhKhanh1402/dejared",
5
5
  "description": "Explore, analyze, and decompile Java JAR files via MCP",
6
6
  "bin": {