minecraft-mcp-rs 1.1.2 → 1.1.3

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.
Files changed (2) hide show
  1. package/README.md +8 -2
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -5,9 +5,12 @@ MCP server that controls a Minecraft bot (azalea) — prebuilt native binaries.
5
5
  ## Usage
6
6
 
7
7
  ```bash
8
- npx minecraft-mcp-rs --headless --stdio
8
+ npx -y minecraft-mcp-rs@1.1.3 --headless --stdio
9
+ bunx minecraft-mcp-rs@1.1.3 --headless --stdio
9
10
  ```
10
11
 
12
+ > This package supports **Minecraft Java Edition 1.21.11 only**. Other Minecraft versions are not supported — see the [root README](https://github.com/halfoffive/minecraft-mcp-rs#readme) for the version compatibility table.
13
+
11
14
  or install globally:
12
15
 
13
16
  ```bash
@@ -22,12 +25,15 @@ For Claude Desktop / Cursor, add to your MCP client config:
22
25
  "mcpServers": {
23
26
  "minecraft": {
24
27
  "command": "npx",
25
- "args": ["-y", "minecraft-mcp-rs", "--headless", "--stdio"]
28
+ "args": ["-y", "minecraft-mcp-rs@1.1.3", "--headless", "--stdio"]
26
29
  }
27
30
  }
28
31
  }
29
32
  ```
30
33
 
34
+ > Using bun? Replace `"command": "npx"` with `"command": "bunx"` and drop the
35
+ > `-y` flag (bunx installs on demand without prompting).
36
+
31
37
  See the [root README](https://github.com/halfoffive/minecraft-mcp-rs#readme) for
32
38
  the full documentation (config file, MCP tools, CLI flags).
33
39
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minecraft-mcp-rs",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "MCP server that controls a Minecraft bot (azalea) — prebuilt binaries",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -20,10 +20,10 @@
20
20
  "node": ">=18"
21
21
  },
22
22
  "optionalDependencies": {
23
- "@minecraft-mcp-rs/minecraft-mcp-rs-windows-x64": "1.1.2",
24
- "@minecraft-mcp-rs/minecraft-mcp-rs-windows-arm64": "1.1.2",
25
- "@minecraft-mcp-rs/minecraft-mcp-rs-darwin-arm64": "1.1.2",
26
- "@minecraft-mcp-rs/minecraft-mcp-rs-linux-x64": "1.1.2",
27
- "@minecraft-mcp-rs/minecraft-mcp-rs-linux-arm64": "1.1.2"
23
+ "@minecraft-mcp-rs/minecraft-mcp-rs-windows-x64": "1.1.3",
24
+ "@minecraft-mcp-rs/minecraft-mcp-rs-windows-arm64": "1.1.3",
25
+ "@minecraft-mcp-rs/minecraft-mcp-rs-darwin-arm64": "1.1.3",
26
+ "@minecraft-mcp-rs/minecraft-mcp-rs-linux-x64": "1.1.3",
27
+ "@minecraft-mcp-rs/minecraft-mcp-rs-linux-arm64": "1.1.3"
28
28
  }
29
29
  }