@wisewandtools/mcp-server 2.0.9 → 2.0.10

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/index.js CHANGED
@@ -1161,7 +1161,7 @@ var HealthChecker = class {
1161
1161
  import { z as z2 } from "zod";
1162
1162
  var boolField = z2.union([z2.boolean(), z2.string()]).transform(
1163
1163
  (val) => typeof val === "string" ? val === "true" : val
1164
- ).optional();
1164
+ ).optional().default(false);
1165
1165
  var numField = z2.union([z2.number(), z2.string()]).transform(
1166
1166
  (val) => typeof val === "string" ? parseInt(val, 10) : val
1167
1167
  ).optional();
@@ -1412,7 +1412,7 @@ var ArticleToolHandler = class {
1412
1412
  project_id: { type: "string", format: "uuid", description: "Project ID to associate with the article" },
1413
1413
  writing_style_mode: { type: "string", enum: ["auto", "persona"], description: "Writing style mode", default: "auto" },
1414
1414
  persona_id: { type: "string", format: "uuid", description: 'Persona ID for writing style (required if writing_style_mode is "persona")' },
1415
- apply_project_brief_config: { type: "boolean", description: "Apply the project brief configuration" },
1415
+ apply_project_brief_config: { type: "boolean", description: "Apply the project brief configuration", default: false },
1416
1416
  // CTA
1417
1417
  use_cta: { type: "boolean", description: "Include call-to-action buttons" },
1418
1418
  ctas: { type: "array", items: { type: "object", properties: { anchor: { type: "string" }, url: { type: "string" } }, required: ["anchor", "url"] }, description: "Call-to-action items with anchor text and URL" },
@@ -1520,7 +1520,7 @@ var ArticleToolHandler = class {
1520
1520
  inputSchema: {
1521
1521
  type: "object",
1522
1522
  properties: this.buildArticleInputSchema(),
1523
- required: ["subject"]
1523
+ required: ["subject", "apply_project_brief_config"]
1524
1524
  },
1525
1525
  handler: /* @__PURE__ */ __name(async (args) => {
1526
1526
  try {
@@ -3935,7 +3935,7 @@ var ProductPagesToolHandler = class {
3935
3935
  import { z as z8 } from "zod";
3936
3936
  var boolField2 = z8.union([z8.boolean(), z8.string()]).transform(
3937
3937
  (val) => typeof val === "string" ? val === "true" : val
3938
- ).optional();
3938
+ ).optional().default(false);
3939
3939
  var DiscoverContentSchema = z8.object({
3940
3940
  subject: z8.string().min(1),
3941
3941
  target_keyword: z8.string().optional(),
@@ -4038,7 +4038,7 @@ var DiscoverToolHandler = class {
4038
4038
  keywords_secondary: { type: "string", description: "Secondary keywords" },
4039
4039
  project_id: { type: "string", format: "uuid", description: "Project UUID" },
4040
4040
  persona_id: { type: "string", format: "uuid", description: "Persona UUID" },
4041
- apply_project_brief_config: { type: "boolean", description: "Apply project brief configuration settings. When true, inherits all feature flags and settings from the project brief (use_faq, use_toc, use_inline_images, internal links, etc.). Recommended for consistency." },
4041
+ apply_project_brief_config: { type: "boolean", description: "Apply project brief configuration settings. When true, inherits all feature flags and settings from the project brief (use_faq, use_toc, use_inline_images, internal links, etc.). Recommended for consistency.", default: false },
4042
4042
  lang: { type: "string", enum: ["fr", "en"], description: "Language code" },
4043
4043
  country: { type: "string", enum: ["fr", "be", "ch", "ca", "us", "gb"], description: "Country code" },
4044
4044
  length: { description: 'Number (max 2000) or "auto"' },
@@ -4095,7 +4095,7 @@ var DiscoverToolHandler = class {
4095
4095
  use_webhook: { type: "boolean", description: "Trigger webhook" },
4096
4096
  webhook_connection_id: { type: "string", description: "Webhook connection ID" }
4097
4097
  },
4098
- required: ["subject"]
4098
+ required: ["subject", "apply_project_brief_config"]
4099
4099
  },
4100
4100
  handler: /* @__PURE__ */ __name(async (args) => {
4101
4101
  try {