manage_consumables
Create, retrieve, list, update, and delete consumables in Snipe-IT. Manage consumable inventory with quantity, category, and location fields.
Instructions
Manage Snipe-IT consumables with CRUD operations.
This tool handles all basic consumable operations:
create: Create a new consumable (requires consumable_data with name, qty, and category_id)
get: Retrieve a single consumable by ID
list: List consumables with optional pagination and filtering
update: Update an existing consumable (requires consumable_id and consumable_data)
delete: Delete a consumable (requires consumable_id)
Returns: dict: Result of the operation including success status and data
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sort | No | Field to sort by (for list action) | |
| limit | No | Number of results to return (for list action) | |
| order | No | Sort order (for list action) | |
| action | Yes | The action to perform on consumables | |
| offset | No | Number of results to skip (for list action) | |
| search | No | Search query (for list action) | |
| consumable_id | No | Consumable ID (required for get, update, delete) | |
| consumable_data | No | Consumable data (required for create, optional for update) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||