inventory_insertInventoryCount

WRITE

Insert inventory count.

Parameters

inventoryCountIdstringrequired
locationIdstringrequired
isBlindbooleanrequired
notesstringnulloptional
scopeanyoptional
customFieldsanyoptional

Call it

Invoke it through the call_tool meta-tool with its arguments:

call_tool
call_tool({
  "name": "inventory_insertInventoryCount",
  "arguments": {
    "inventoryCountId": "string",
    "locationId": "string",
    "isBlind": true
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "inventoryCountId": {
      "type": "string"
    },
    "locationId": {
      "type": "string"
    },
    "isBlind": {
      "type": "boolean"
    },
    "notes": {
      "type": [
        "string",
        "null"
      ]
    },
    "scope": {},
    "customFields": {}
  },
  "required": [
    "inventoryCountId",
    "locationId",
    "isBlind"
  ]
}