find-item
Locate a specific item in the bot's Minecraft inventory by specifying its name or type using the MCP server's inventory search tool.
Instructions
Find a specific item in the bot's inventory
Input Schema
Name | Required | Description | Default |
---|---|---|---|
nameOrType | Yes | Name or type of item to find |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"nameOrType": {
"description": "Name or type of item to find",
"type": "string"
}
},
"required": [
"nameOrType"
],
"type": "object"
}