@kadoa/mcp 0.5.9 → 0.5.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.
- package/README.md +13 -0
- package/dist/index.js +2638 -1050
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -47,6 +47,7 @@ Point your client to `https://mcp.kadoa.com/mcp` with OAuth authentication.
|
|
|
47
47
|
|
|
48
48
|
| Tool | Description |
|
|
49
49
|
|------|-------------|
|
|
50
|
+
| `scrape` | Immediately fetch one URL as markdown or raw HTML (shown only for enabled workspaces) |
|
|
50
51
|
| `create_workflow` | Create an agentic navigation workflow from a prompt |
|
|
51
52
|
| `list_workflows` | List all workflows with status |
|
|
52
53
|
| `get_workflow` | Get detailed workflow information |
|
|
@@ -65,6 +66,18 @@ Point your client to `https://mcp.kadoa.com/mcp` with OAuth authentication.
|
|
|
65
66
|
|
|
66
67
|
Once the MCP server is configured, you can manage the full workflow lifecycle through natural conversation. Here are a few common operations shown as Claude Code sessions.
|
|
67
68
|
|
|
69
|
+
### Fetch a page for an LLM
|
|
70
|
+
|
|
71
|
+
```
|
|
72
|
+
> You: Fetch https://example.com as markdown.
|
|
73
|
+
|
|
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.
|
|
77
|
+
```
|
|
78
|
+
|
|
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.
|
|
80
|
+
|
|
68
81
|
### Create and run a workflow
|
|
69
82
|
|
|
70
83
|
```
|