@kadoa/mcp 0.5.11 → 0.5.12

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/README.md CHANGED
@@ -72,8 +72,8 @@ Once the MCP server is configured, you can manage the full workflow lifecycle th
72
72
  > You: Fetch https://example.com as markdown.
73
73
 
74
74
  Claude calls scrape with smart routing and returns compact markdown.
75
- If the page reports bot detection, Claude can retry explicitly with
76
- the stealth proxy tier. Ask for HTML when you need the raw source.
75
+ Routing is fully automatic it escalates through the stealth tiers on
76
+ its own when a site blocks bots. Ask for HTML when you need the raw source.
77
77
  ```
78
78
 
79
79
  The `scrape` tool is available only to workspaces enabled for the Scrape API. Use a workflow instead for structured extraction, recurring runs, monitoring, or multi-page navigation.
package/dist/index.js CHANGED
@@ -52297,15 +52297,13 @@ function registerTools(server, ctx, capabilities) {
52297
52297
  }
52298
52298
  if (capabilities.scrape) {
52299
52299
  server.registerTool("scrape", {
52300
- description: "Immediately fetch one URL as LLM-friendly markdown or raw HTML without creating a workflow. " + "Markdown is the default. Auto routing is normally best; if bot detection reports a stealth retry hint, call again with proxy='stealth'. " + "Use create_workflow instead for structured extraction, recurring runs, monitoring, or navigation-heavy jobs.",
52300
+ description: "Immediately fetch one URL as LLM-friendly markdown or raw HTML without creating a workflow. " + "Markdown is the default. Routing is fully automatic: it starts cheap and escalates through stealth tiers on its own when a site blocks bots, and remembers the working method per host. " + "Use create_workflow instead for structured extraction, recurring runs, monitoring, or navigation-heavy jobs.",
52301
52301
  inputSchema: strictSchema({
52302
52302
  url: exports_external.url().refine((value) => {
52303
52303
  const protocol = new URL(value).protocol;
52304
52304
  return protocol === "http:" || protocol === "https:";
52305
52305
  }, "URL must use HTTP or HTTPS").describe("HTTP or HTTPS URL to fetch"),
52306
- format: exports_external.enum(["html", "markdown"]).optional().describe("Output format. Defaults to markdown for compact LLM consumption; use html for raw source."),
52307
- fetchMode: exports_external.enum(["auto", "http", "browser"]).optional().describe("Fetch mode. Omit or use auto for smart routing; browser renders JavaScript."),
52308
- proxy: exports_external.enum(["auto", "dc", "isp", "residential", "stealth"]).optional().describe("Proxy tier. Use stealth only when normal routing is bot-blocked.")
52306
+ format: exports_external.enum(["html", "markdown"]).optional().describe("Output format. Defaults to markdown for compact LLM consumption; use html for raw source.")
52309
52307
  }),
52310
52308
  annotations: {
52311
52309
  readOnlyHint: true,
@@ -52316,9 +52314,7 @@ function registerTools(server, ctx, capabilities) {
52316
52314
  }, withErrorHandling("scrape", async (args) => {
52317
52315
  const response = await ctx.client.scrape.fetch({
52318
52316
  url: args.url,
52319
- format: args.format ?? "markdown",
52320
- ...args.fetchMode != null && { fetchMode: args.fetchMode },
52321
- ...args.proxy != null && { proxy: args.proxy }
52317
+ format: args.format ?? "markdown"
52322
52318
  });
52323
52319
  return jsonResult(response);
52324
52320
  }));
@@ -53625,8 +53621,8 @@ function registerTools(server, ctx, capabilities) {
53625
53621
  }
53626
53622
  var SchemaFieldShape, DASHBOARD_BASE_URL = "https://www.kadoa.com", WORKFLOW_AUDIT_WATCHED_KEYS;
53627
53623
  var init_tools = __esm(() => {
53628
- init_zod();
53629
53624
  init_dist2();
53625
+ init_zod();
53630
53626
  init_client2();
53631
53627
  SchemaFieldShape = {
53632
53628
  name: exports_external.string().describe("Field name"),
@@ -53655,7 +53651,7 @@ var package_default;
53655
53651
  var init_package = __esm(() => {
53656
53652
  package_default = {
53657
53653
  name: "@kadoa/mcp",
53658
- version: "0.5.11",
53654
+ version: "0.5.12",
53659
53655
  description: "Kadoa MCP Server — manage workflows from Claude Desktop, Cursor, and other MCP clients",
53660
53656
  type: "module",
53661
53657
  main: "dist/index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kadoa/mcp",
3
- "version": "0.5.11",
3
+ "version": "0.5.12",
4
4
  "description": "Kadoa MCP Server — manage workflows from Claude Desktop, Cursor, and other MCP clients",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",