Help us improve
Share bugs, ideas, or general feedback.
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 autotaskHow this command is triggered — by the user, by Claude, or both
Slash command
/kaseya-autotask:search-productsThe summary Claude sees in its command listing — used to decide when to auto-load this command
# 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.
/lookup-configSearches for configuration items (assets) in ConnectWise PSA by name, serial, tag, company ID, type, or status. Returns formatted list with ID, name, type, company, status, serial.
/gcloud-searchSearches UK Digital Marketplace for G-Cloud cloud services matching project requirements, performs live search, compares options, and recommends with procurement document.
/search-assetsSearches Syncro for customer assets by name, serial, type, status, or customer ID with optional limit. Outputs formatted table of results with name, type, customer, serial, status.
/productsInteractively search, list, view details, edit, create, and archive products in your Wix store.
Share bugs, ideas, or general feedback.
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 |