listTrades
Retrieve available trades from villagers within a specified range using natural language commands for efficient inventory management in Minecraft via MCP Minecraft Remote.
Instructions
List available trades from a nearby villager
Input Schema
Name | Required | Description | Default |
---|---|---|---|
range | No | Range to search for villagers | |
villagerName | No | Name or identifier of the villager (optional) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"range": {
"default": 4,
"description": "Range to search for villagers",
"type": "number"
},
"villagerName": {
"description": "Name or identifier of the villager (optional)",
"type": "string"
}
},
"type": "object"
}