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 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-minecraft/releases)
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-minecraft](https://github.com/Backas03/VitaminMCP-minecraft)**
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.0",
2
+ "version": "3.0.1",
3
3
  "jars": {
4
- "mcp-server.jar": "576610b6f7deb691fad5633533678ef7a9266574ad731094cc78a01bb24be480"
4
+ "mcp-server.jar": "d2873f9e4d64a8aad41e2529dc337697343b377d4a5d892d7b618d3476309426"
5
5
  },
6
6
  "assets": {
7
- "bot-runner-win-x64.exe": "1a762d0773269ea3205ccb6816e964f33f3ddd15fd1003c6cadd5af4460572ca",
8
- "bot-runner-linux-x64": "a2e975d331461fc699c1998e86a847f8ca161a266caae57c6060bc74bf87569c",
9
- "bot-runner-linux-arm64": "31aad6207a268ddb70298ca1eaa2d443c2f097e1e5b714a2db6b40eea57ec749",
10
- "bot-runner-darwin-x64": "573eb872b1965fe6b8575611f42336fd4dda436e749196e4a1373cffd2939bde",
11
- "bot-runner-darwin-arm64": "853183f7da381f9b831aef9824c69563a732205c61d300fad908cd0f502a73e0",
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-minecraft/releases/download';
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-minecraft/issues';
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.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-minecraft#readme",
17
- "bugs": "https://github.com/Backas03/VitaminMCP-minecraft/issues",
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-minecraft.git",
20
+ "url": "git+https://github.com/Backas03/VitaminMCP.git",
21
21
  "directory": "npm"
22
22
  },
23
23
  "license": "MIT",