vitaminmcp 3.0.0 → 3.0.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.
- package/README.md +2 -2
- package/checksums.json +7 -7
- package/lib/jars.mjs +2 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -64,7 +64,7 @@ agent leaves its host, ports and token where this server reads them.
|
|
|
64
64
|
|
|
65
65
|
## What it downloads
|
|
66
66
|
|
|
67
|
-
On first run, from [the GitHub release](https://github.com/Backas03/VitaminMCP
|
|
67
|
+
On first run, from [the GitHub release](https://github.com/Backas03/VitaminMCP/releases)
|
|
68
68
|
matching this package's version, into `~/.vitaminmcp/jars/<version>/`:
|
|
69
69
|
|
|
70
70
|
- `mcp-server.jar` (~2 MB) — waited for, since nothing works without it
|
|
@@ -83,6 +83,6 @@ Every downloaded file is checked against its pinned SHA-256. A file that does no
|
|
|
83
83
|
rather than run.
|
|
84
84
|
|
|
85
85
|
Full documentation, design notes and the plugin itself:
|
|
86
|
-
**[github.com/Backas03/VitaminMCP
|
|
86
|
+
**[github.com/Backas03/VitaminMCP](https://github.com/Backas03/VitaminMCP)**
|
|
87
87
|
|
|
88
88
|
MIT.
|
package/checksums.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "3.0.
|
|
2
|
+
"version": "3.0.1",
|
|
3
3
|
"jars": {
|
|
4
|
-
"mcp-server.jar": "
|
|
4
|
+
"mcp-server.jar": "d2873f9e4d64a8aad41e2529dc337697343b377d4a5d892d7b618d3476309426"
|
|
5
5
|
},
|
|
6
6
|
"assets": {
|
|
7
|
-
"bot-runner-win-x64.exe": "
|
|
8
|
-
"bot-runner-linux-x64": "
|
|
9
|
-
"bot-runner-linux-arm64": "
|
|
10
|
-
"bot-runner-darwin-x64": "
|
|
11
|
-
"bot-runner-darwin-arm64": "
|
|
7
|
+
"bot-runner-win-x64.exe": "e4ed541a46bdb338d566e1b036acc786864d6b3cefcdc6b4272952ab1e265a66",
|
|
8
|
+
"bot-runner-linux-x64": "9b2a202455a88870d6a4d1afe0b23b8e287e620ca213b36c2fbe6d2f4699d10e",
|
|
9
|
+
"bot-runner-linux-arm64": "077c8b45b14ba2419700ddf0607e92d35ffe1f134e89db42ccc6d927f002355e",
|
|
10
|
+
"bot-runner-darwin-x64": "7e30f2c345ddcd7fc16c7d94849ef3dbd0543c184d84606562744d0c3d98e990",
|
|
11
|
+
"bot-runner-darwin-arm64": "9f581bcbcba6f995500c3d93d45d0d05bc9aad582f0824d57f4f9beca208a9b1",
|
|
12
12
|
"bot-runner-viewer-win-x64.tgz": "e39a36cdf92b9223aa7c9610f8231afc7a577e8ed007bc3571895bd945baf3e1"
|
|
13
13
|
}
|
|
14
14
|
}
|
package/lib/jars.mjs
CHANGED
|
@@ -9,7 +9,7 @@ import { fileURLToPath } from 'node:url';
|
|
|
9
9
|
|
|
10
10
|
const HERE = path.dirname(fileURLToPath(import.meta.url));
|
|
11
11
|
|
|
12
|
-
const RELEASES = 'https://github.com/Backas03/VitaminMCP
|
|
12
|
+
const RELEASES = 'https://github.com/Backas03/VitaminMCP/releases/download';
|
|
13
13
|
|
|
14
14
|
/** The jar this package launches, and the one it launches in turn. */
|
|
15
15
|
export const MCP_SERVER_JAR = 'mcp-server.jar';
|
|
@@ -20,7 +20,7 @@ export const VIEWER_ASSET = 'bot-runner-viewer-win-x64.tgz';
|
|
|
20
20
|
let checksumsPromise;
|
|
21
21
|
let manifestPromise;
|
|
22
22
|
|
|
23
|
-
const REPORT = 'https://github.com/Backas03/VitaminMCP
|
|
23
|
+
const REPORT = 'https://github.com/Backas03/VitaminMCP/issues';
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
26
|
* The exact bytes this version of the package expects, stamped in at release.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vitaminmcp",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"mcpName": "io.github.Backas03/vitaminmcp",
|
|
5
5
|
"description": "MCP server for testing Minecraft plugins: drives a real Paper server and real protocol bots from an AI agent.",
|
|
6
6
|
"keywords": [
|
|
@@ -13,11 +13,11 @@
|
|
|
13
13
|
"plugin-testing",
|
|
14
14
|
"end-to-end-testing"
|
|
15
15
|
],
|
|
16
|
-
"homepage": "https://github.com/Backas03/VitaminMCP
|
|
17
|
-
"bugs": "https://github.com/Backas03/VitaminMCP
|
|
16
|
+
"homepage": "https://github.com/Backas03/VitaminMCP#readme",
|
|
17
|
+
"bugs": "https://github.com/Backas03/VitaminMCP/issues",
|
|
18
18
|
"repository": {
|
|
19
19
|
"type": "git",
|
|
20
|
-
"url": "git+https://github.com/Backas03/VitaminMCP
|
|
20
|
+
"url": "git+https://github.com/Backas03/VitaminMCP.git",
|
|
21
21
|
"directory": "npm"
|
|
22
22
|
},
|
|
23
23
|
"license": "MIT",
|