minecraft-mcp-rs 1.2.0 → 1.3.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 +3 -3
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -5,8 +5,8 @@ MCP server that controls a Minecraft bot (azalea) — prebuilt native binaries.
|
|
|
5
5
|
## Usage
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
npx -y minecraft-mcp-rs@1.
|
|
9
|
-
bunx minecraft-mcp-rs@1.
|
|
8
|
+
npx -y minecraft-mcp-rs@1.3.0 --headless --stdio
|
|
9
|
+
bunx minecraft-mcp-rs@1.3.0 --headless --stdio
|
|
10
10
|
```
|
|
11
11
|
|
|
12
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.
|
|
@@ -25,7 +25,7 @@ For Claude Desktop / Cursor, add to your MCP client config:
|
|
|
25
25
|
"mcpServers": {
|
|
26
26
|
"minecraft": {
|
|
27
27
|
"command": "npx",
|
|
28
|
-
"args": ["-y", "minecraft-mcp-rs@1.
|
|
28
|
+
"args": ["-y", "minecraft-mcp-rs@1.3.0", "--headless", "--stdio"]
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "minecraft-mcp-rs",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
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.
|
|
24
|
-
"@minecraft-mcp-rs/minecraft-mcp-rs-windows-arm64": "1.
|
|
25
|
-
"@minecraft-mcp-rs/minecraft-mcp-rs-darwin-arm64": "1.
|
|
26
|
-
"@minecraft-mcp-rs/minecraft-mcp-rs-linux-x64": "1.
|
|
27
|
-
"@minecraft-mcp-rs/minecraft-mcp-rs-linux-arm64": "1.
|
|
23
|
+
"@minecraft-mcp-rs/minecraft-mcp-rs-windows-x64": "1.3.0",
|
|
24
|
+
"@minecraft-mcp-rs/minecraft-mcp-rs-windows-arm64": "1.3.0",
|
|
25
|
+
"@minecraft-mcp-rs/minecraft-mcp-rs-darwin-arm64": "1.3.0",
|
|
26
|
+
"@minecraft-mcp-rs/minecraft-mcp-rs-linux-x64": "1.3.0",
|
|
27
|
+
"@minecraft-mcp-rs/minecraft-mcp-rs-linux-arm64": "1.3.0"
|
|
28
28
|
}
|
|
29
29
|
}
|