conduyt-mcp 4.23.0 → 4.23.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.
@@ -14,7 +14,7 @@ import { formatResult } from "../client.js";
14
14
  // limits (10 groups × 20 rules) so oversized payloads fail here instead of
15
15
  // round-tripping to a 400.
16
16
  const ruleSchema = z.object({
17
- field: z.string().describe("Filter field, e.g. assignedTo, source, tags, pipelineStage, dealStatus, createdAt"),
17
+ field: z.string().describe("Filter field, e.g. assignedTo, source, tags, pipeline (the whole pipeline), pipelineStage, dealStatus, createdAt"),
18
18
  operator: z.string().describe("Operator valid for the field, e.g. equals, is_any_of, contains, is_empty"),
19
19
  value: z.union([z.string(), z.array(z.string())]).optional(),
20
20
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conduyt-mcp",
3
- "version": "4.23.0",
3
+ "version": "4.23.1",
4
4
  "description": "MCP server for Conduyt CRM — expose CRM operations as AI-accessible tools",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",