production_getAssemblyInstructions

READ

Get assembly instructions.

Parameters

searchstringoptional
statusstringoptional
itemIdstringoptional
limitnumberoptional
offsetnumberoptional

Call it

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

call_tool
call_tool({
  "name": "production_getAssemblyInstructions",
  "arguments": {
    "search": "string",
    "status": "string",
    "itemId": "string",
    "limit": 0,
    "offset": 0
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "search": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "itemId": {
      "type": "string"
    },
    "limit": {
      "type": "number"
    },
    "offset": {
      "type": "number"
    }
  }
}