mineResource
Mine specific blocks or resources in Minecraft using the MCP Server. Input the block/resource name and quantity to automate resource collection for AI agents.
Instructions
Mine specific blocks or resources
Input Schema
Name | Required | Description | Default |
---|---|---|---|
count | Yes | Number of blocks to mine | |
name | Yes | Name of the block/resource to mine |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"description": "Number of blocks to mine",
"type": "number"
},
"name": {
"description": "Name of the block/resource to mine",
"type": "string"
}
},
"required": [
"name",
"count"
],
"type": "object"
}