From kaseya-autotask
Searches Autotask product catalog for products, services, or inventory items by search term, type, category, or active status; displays results table with ID, name, SKU, price, and status.
npx claudepluginhub wyre-technology/msp-claude-plugins --plugin autotask# Search Autotask Product Catalog ## Prerequisites - Autotask MCP server connected and authenticated - API user has read access to product catalog entities ## Steps 1. Determine the search type (products, services, or inventory) 2. Build the appropriate search query with filters 3. Execute the search using the corresponding MCP tool 4. Format and display results with key fields ### For Products ### For Services ### For Inventory ## Parameters | Parameter | Type | Required | Default | Description | |-----------|------|----------|---------|-------------| | search | string | No ...
/search-productsSearches Salesbuildr product catalog by name or category ID, calls API to retrieve and display matching products with pricing.
/search-productsSearches Pax8 product catalog by name or vendor, optionally fetching pricing. Returns table of matching products with SKU, unit, and provisioning details.
Tool: autotask_search_products
Args: {
searchTerm: "$search",
isActive: $active-only,
productCategory: $category
}
Tool: autotask_search_services
Args: {
searchTerm: "$search",
isActive: $active-only
}
Tool: autotask_search_inventory_items
Args: {
productID: <resolved from search>
}
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| search | string | No | - | Search term for name or SKU |
| type | string | No | products | products, services, or inventory |
| active-only | boolean | No | true | Filter to active items only |
| category | number | No | - | Product category ID filter |
/search-products search="firewall"
/search-products search="managed" type="services"
/search-products category=5 active-only=true
/search-products search="laptop" type="inventory"
Results displayed as a table:
Found 3 products matching "firewall":
| ID | Name | SKU | Unit Price | Active |
|-------|-------------------------|------------|------------|--------|
| 12345 | FortiGate 60F | FG-60F | $1,299.00 | Yes |
| 12346 | FortiGate 80F | FG-80F | $2,199.00 | Yes |
| 12347 | SonicWall TZ270 | SW-TZ270 | $599.00 | Yes |
| Error | Resolution |
|---|---|
| No results found | Try broader search terms or remove filters |
| MCP server not connected | Check Autotask MCP server configuration |
| Permission denied | Verify API user has product catalog access |