items_lookupBuyPrice
WRITELookup buy price.
Parameters
itemIdstringrequiredqtynumberrequiredfallbackCostnumberrequiredCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "items_lookupBuyPrice",
"arguments": {
"itemId": "string",
"qty": 0,
"fallbackCost": 0
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"itemId": {
"type": "string"
},
"qty": {
"type": "number"
},
"fallbackCost": {
"type": "number"
}
},
"required": [
"itemId",
"qty",
"fallbackCost"
]
}