@opencx/mcp 1.15.0 → 1.15.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/schema.d.ts CHANGED
@@ -1641,7 +1641,7 @@ export interface paths {
1641
1641
  };
1642
1642
  /**
1643
1643
  * List tags
1644
- * @description List all tags for your organization. Tags categorize chat sessions (e.g. "billing", "refund", "feature-request"). The AI can auto-tag sessions based on these.
1644
+ * @description List tags for your organization. Tags categorize chat sessions (e.g. "billing", "refund", "feature-request"). The AI can auto-tag sessions based on these. Optionally filter by `search` (case-insensitive substring of tag name or description), `category_id`, and `limit`. With no params, returns all tags ordered by name.
1645
1645
  */
1646
1646
  get: operations["listTags"];
1647
1647
  /**
@@ -1729,7 +1729,7 @@ export interface paths {
1729
1729
  };
1730
1730
  /**
1731
1731
  * List tag categories
1732
- * @description List all tag categories for your organization. Categories group related tags (e.g. "Billing", "Product Area") so the AI can tag scalably across large taxonomies.
1732
+ * @description List tag categories for your organization. Categories group related tags (e.g. "Billing", "Product Area") so the AI can tag scalably across large taxonomies. Optionally filter by `search` (case-insensitive substring of category name or description) and `limit`. With no params, returns all categories ordered by name.
1733
1733
  */
1734
1734
  get: operations["listTagCategories"];
1735
1735
  put?: never;
@@ -12106,7 +12106,14 @@ export interface operations {
12106
12106
  };
12107
12107
  listTags: {
12108
12108
  parameters: {
12109
- query?: never;
12109
+ query?: {
12110
+ /** @description Case-insensitive substring match on tag name or description */
12111
+ search?: string;
12112
+ /** @description Only tags assigned to this category */
12113
+ category_id?: string;
12114
+ /** @description Max tags to return (clamped to 200) */
12115
+ limit?: number;
12116
+ };
12110
12117
  header?: never;
12111
12118
  path?: never;
12112
12119
  cookie?: never;
@@ -12287,7 +12294,12 @@ export interface operations {
12287
12294
  };
12288
12295
  listTagCategories: {
12289
12296
  parameters: {
12290
- query?: never;
12297
+ query?: {
12298
+ /** @description Case-insensitive substring match on category name or description */
12299
+ search?: string;
12300
+ /** @description Max categories to return (clamped to 200) */
12301
+ limit?: number;
12302
+ };
12291
12303
  header?: never;
12292
12304
  path?: never;
12293
12305
  cookie?: never;