@unclick/mcp-server 0.3.10 → 0.3.11

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.
@@ -15640,24 +15640,24 @@ export declare const ADDITIONAL_TOOLS: readonly [{
15640
15640
  };
15641
15641
  }, {
15642
15642
  readonly name: "uxpass_run";
15643
- readonly description: "Run a UI/UX quality check on a URL or saved pack. Returns a run id and a queued status. Pass either pack_name (a registered pack) or url (a one-off check), and an optional list of hat ids to scope the panel.";
15643
+ readonly description: "Run a UI/UX quality check synchronously against a URL. Executes the deterministic uxpass-core check set (HTTP, HTML, accessibility, agent readability, performance, security) against the target and returns the run id, status, UX Score, and summary. Pass either url (a one-off check) or pack_name (resolves the registered pack's url). The hats parameter is accepted for forward compatibility but is currently ignored; LLM hats land in a later chunk.";
15644
15644
  readonly inputSchema: {
15645
15645
  readonly type: "object";
15646
15646
  readonly properties: {
15647
15647
  readonly pack_name: {
15648
15648
  readonly type: "string";
15649
- readonly description: "Name of a registered UXPass pack";
15649
+ readonly description: "Name of a registered UXPass pack; the pack's url is used as the target";
15650
15650
  };
15651
15651
  readonly url: {
15652
15652
  readonly type: "string";
15653
- readonly description: "Target URL for a one-off run";
15653
+ readonly description: "Target URL for a one-off run (takes precedence over pack_name)";
15654
15654
  };
15655
15655
  readonly hats: {
15656
15656
  readonly type: "array";
15657
15657
  readonly items: {
15658
15658
  readonly type: "string";
15659
15659
  };
15660
- readonly description: "Optional list of hat ids to run (e.g. accessibility, agent-readability). Defaults to the pack's hats or the MVP hat set.";
15660
+ readonly description: "Reserved for future use. Currently ignored; the deterministic runner evaluates the full uxpass-core check set on every run.";
15661
15661
  };
15662
15662
  };
15663
15663
  };
@@ -10388,16 +10388,16 @@ export const ADDITIONAL_TOOLS = [
10388
10388
  // ── uxpass-tool.ts (UI/UX QC, sister to TestPass) ──────────────────────────
10389
10389
  {
10390
10390
  name: "uxpass_run",
10391
- description: "Run a UI/UX quality check on a URL or saved pack. Returns a run id and a queued status. Pass either pack_name (a registered pack) or url (a one-off check), and an optional list of hat ids to scope the panel.",
10391
+ description: "Run a UI/UX quality check synchronously against a URL. Executes the deterministic uxpass-core check set (HTTP, HTML, accessibility, agent readability, performance, security) against the target and returns the run id, status, UX Score, and summary. Pass either url (a one-off check) or pack_name (resolves the registered pack's url). The hats parameter is accepted for forward compatibility but is currently ignored; LLM hats land in a later chunk.",
10392
10392
  inputSchema: {
10393
10393
  type: "object",
10394
10394
  properties: {
10395
- pack_name: { type: "string", description: "Name of a registered UXPass pack" },
10396
- url: { type: "string", description: "Target URL for a one-off run" },
10395
+ pack_name: { type: "string", description: "Name of a registered UXPass pack; the pack's url is used as the target" },
10396
+ url: { type: "string", description: "Target URL for a one-off run (takes precedence over pack_name)" },
10397
10397
  hats: {
10398
10398
  type: "array",
10399
10399
  items: { type: "string" },
10400
- description: "Optional list of hat ids to run (e.g. accessibility, agent-readability). Defaults to the pack's hats or the MVP hat set.",
10400
+ description: "Reserved for future use. Currently ignored; the deterministic runner evaluates the full uxpass-core check set on every run.",
10401
10401
  },
10402
10402
  },
10403
10403
  },