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.
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[](https://www.npmjs.com/package/dejared-mcp)
|
|
2
2
|
[](LICENSE)
|
|
3
3
|
[]()
|
|
4
|
-
[]()
|
|
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**
|
|
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.
|
|
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.
|
|
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
|
|
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
|
|