@unclick/mcp-server 0.3.14 → 0.3.16

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.
@@ -194,9 +194,11 @@ import { perplexityChatCompletion } from "./perplexity-tool.js";
194
194
  import { lsListStores, lsListProducts, lsListOrders, lsListSubscriptions, lsGetOrder, lsListCustomers, } from "./lemonsqueezy-tool.js";
195
195
  import { ckListSubscribers, ckAddSubscriber, ckListForms, ckListSequences, ckListTags, ckTagSubscriber, } from "./convertkit-tool.js";
196
196
  // ─── TestPass ─────────────────────────────────────────────────────────────────
197
- import { testpassRun, testpassStatus, testpassSavePack, testpassEditItem } from "./testpass-tool.js";
197
+ import { testpassRun, testpassStatus, testpassSavePack, testpassEditItem, testpassReportHtml, testpassReportJson, testpassReportMd, } from "./testpass-tool.js";
198
198
  // ─── UXPass (sister to TestPass, UI/UX QC) ───────────────────────────────────
199
199
  import { uxpassRun, uxpassStatus, uxpassReportHtml, uxpassReportJson, uxpassReportMd, uxpassRegisterPack, } from "./uxpass-tool.js";
200
+ // ─── SEOPass (search visibility QC, sister to UXPass) ───────────────────────
201
+ import { seopassRun, seopassStatus, seopassRegisterPack, seopassLighthousePlan, } from "./seopass-tool.js";
200
202
  // ─── Crews (Orchestrator Wizard) ──────────────────────────────────────────────
201
203
  import { crewsStartRun, crewsGetRun, crewsListRuns } from "./crews-tool.js";
202
204
  // ─────────────────────────────────────────────────────────────────────────────
@@ -10389,6 +10391,39 @@ export const ADDITIONAL_TOOLS = [
10389
10391
  required: ["run_id", "item_id", "verdict"],
10390
10392
  },
10391
10393
  },
10394
+ {
10395
+ name: "testpass_report_html",
10396
+ description: "Get the HTML report for a TestPass run.",
10397
+ inputSchema: {
10398
+ type: "object",
10399
+ properties: {
10400
+ run_id: { type: "string", description: "The run id returned by testpass_run" },
10401
+ },
10402
+ required: ["run_id"],
10403
+ },
10404
+ },
10405
+ {
10406
+ name: "testpass_report_json",
10407
+ description: "Get the JSON report for a TestPass run.",
10408
+ inputSchema: {
10409
+ type: "object",
10410
+ properties: {
10411
+ run_id: { type: "string", description: "The run id returned by testpass_run" },
10412
+ },
10413
+ required: ["run_id"],
10414
+ },
10415
+ },
10416
+ {
10417
+ name: "testpass_report_md",
10418
+ description: "Get the Markdown report for a TestPass run.",
10419
+ inputSchema: {
10420
+ type: "object",
10421
+ properties: {
10422
+ run_id: { type: "string", description: "The run id returned by testpass_run" },
10423
+ },
10424
+ required: ["run_id"],
10425
+ },
10426
+ },
10392
10427
  // ── uxpass-tool.ts (UI/UX QC, sister to TestPass) ──────────────────────────
10393
10428
  {
10394
10429
  name: "uxpass_run",
@@ -10465,6 +10500,53 @@ export const ADDITIONAL_TOOLS = [
10465
10500
  required: ["pack_yaml"],
10466
10501
  },
10467
10502
  },
10503
+ // ── seopass-tool.ts (search visibility QC, sister to UXPass) ────────────────
10504
+ {
10505
+ name: "seopass_run",
10506
+ description: "Plan a SEOPass run against a URL or registered pack. Chunk 1 returns the crawl and Lighthouse execution plan without persisting results.",
10507
+ inputSchema: {
10508
+ type: "object",
10509
+ properties: {
10510
+ url: { type: "string", description: "Target URL for a one-off SEOPass plan" },
10511
+ pack_name: { type: "string", description: "Name of a registered SEOPass pack; the pack URL is used as the target" },
10512
+ },
10513
+ },
10514
+ },
10515
+ {
10516
+ name: "seopass_status",
10517
+ description: "Fetch the status for a SEOPass run. Chunk 1 reserves the tool shape; persistence lands later.",
10518
+ inputSchema: {
10519
+ type: "object",
10520
+ properties: {
10521
+ run_id: { type: "string", description: "The SEOPass run id returned by a future seopass_run execution path" },
10522
+ },
10523
+ required: ["run_id"],
10524
+ },
10525
+ },
10526
+ {
10527
+ name: "seopass_register_pack",
10528
+ description: "Register a SEOPass pack from a YAML string. Validates required keys and stores the pack locally for seopass_run.",
10529
+ inputSchema: {
10530
+ type: "object",
10531
+ properties: {
10532
+ pack_yaml: { type: "string", description: "Full SEOPass pack definition as a YAML string" },
10533
+ },
10534
+ required: ["pack_yaml"],
10535
+ },
10536
+ },
10537
+ {
10538
+ name: "seopass_lighthouse_plan",
10539
+ description: "Build the Lighthouse execution plan for a SEOPass target URL. Execution and persistence land in a later chunk.",
10540
+ inputSchema: {
10541
+ type: "object",
10542
+ properties: {
10543
+ url: { type: "string", description: "Target URL to audit with Lighthouse" },
10544
+ strategy: { type: "string", enum: ["mobile", "desktop"], description: "Lighthouse strategy (default: mobile)" },
10545
+ categories: { type: "array", items: { type: "string" }, description: "Lighthouse categories to request" },
10546
+ },
10547
+ required: ["url"],
10548
+ },
10549
+ },
10468
10550
  // ── crews-tool.ts (Orchestrator Wizard) ──────────────────────────────────────
10469
10551
  {
10470
10552
  name: "start_crew_run",
@@ -11440,6 +11522,9 @@ export const ADDITIONAL_HANDLERS = {
11440
11522
  testpass_status: (args) => testpassStatus(args),
11441
11523
  testpass_save_pack: (args) => testpassSavePack(args),
11442
11524
  testpass_edit_item: (args) => testpassEditItem(args),
11525
+ testpass_report_html: (args) => testpassReportHtml(args),
11526
+ testpass_report_json: (args) => testpassReportJson(args),
11527
+ testpass_report_md: (args) => testpassReportMd(args),
11443
11528
  // uxpass-tool.ts
11444
11529
  uxpass_run: (args) => uxpassRun(args),
11445
11530
  uxpass_status: (args) => uxpassStatus(args),
@@ -11447,6 +11532,11 @@ export const ADDITIONAL_HANDLERS = {
11447
11532
  uxpass_report_json: (args) => uxpassReportJson(args),
11448
11533
  uxpass_report_md: (args) => uxpassReportMd(args),
11449
11534
  uxpass_register_pack: (args) => uxpassRegisterPack(args),
11535
+ // seopass-tool.ts
11536
+ seopass_run: (args) => seopassRun(args),
11537
+ seopass_status: (args) => seopassStatus(args),
11538
+ seopass_register_pack: (args) => seopassRegisterPack(args),
11539
+ seopass_lighthouse_plan: (args) => seopassLighthousePlan(args),
11450
11540
  // crews-tool.ts
11451
11541
  start_crew_run: (args) => crewsStartRun(args),
11452
11542
  get_run: (args) => crewsGetRun(args),