crawlio-browser 1.5.5 → 1.5.8
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 +384 -56
- package/dist/mcp-server/{chunk-A4EQCKHH.js → chunk-YEKQAHYW.js} +1 -1
- package/dist/mcp-server/index.js +888 -23
- package/dist/mcp-server/{init-77AO6DDJ.js → init-ZLXCKEQB.js} +2 -2
- package/package.json +2 -4
- package/skills/browser-automation/SKILL.md +15 -3
- package/skills/web-research/SKILL.md +1 -0
- package/.claude-plugin/plugin.json +0 -10
- package/assets/AppIcon.icns +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
PKG_VERSION
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-YEKQAHYW.js";
|
|
4
4
|
|
|
5
5
|
// src/mcp-server/init.ts
|
|
6
6
|
import { execFileSync, spawn } from "child_process";
|
|
@@ -925,7 +925,7 @@ async function printSummary(options) {
|
|
|
925
925
|
}
|
|
926
926
|
} else {
|
|
927
927
|
const modeLabel = options.full ? "Full mode" : "Code mode";
|
|
928
|
-
statusLines.push(`${green("+")} Mode ${modeLabel} (3 tools,
|
|
928
|
+
statusLines.push(`${green("+")} Mode ${modeLabel} (3 tools, 133 commands)`);
|
|
929
929
|
}
|
|
930
930
|
statusLines.push(`${green("+")} Skill Browser automation installed`);
|
|
931
931
|
statusLines.push(`${green("+")} Extension ${cyan("https://crawlio.app/agent")}`);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crawlio-browser",
|
|
3
|
-
"version": "1.5.
|
|
4
|
-
"description": "MCP server with
|
|
3
|
+
"version": "1.5.8",
|
|
4
|
+
"description": "MCP server with 100 CDP-backed tools for browser automation — screenshots, DOM, network capture, framework detection, cookies, storage, session recording, structured data extraction, performance metrics via Chrome",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/mcp-server/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -11,8 +11,6 @@
|
|
|
11
11
|
"bin/crawlio-browser.js",
|
|
12
12
|
"dist/mcp-server/",
|
|
13
13
|
"skills/",
|
|
14
|
-
"assets/",
|
|
15
|
-
".claude-plugin/",
|
|
16
14
|
"README.md"
|
|
17
15
|
],
|
|
18
16
|
"scripts": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: browser-automation
|
|
3
|
-
description: Use this skill when the user asks to interact with a browser, take screenshots, inspect a page, capture network traffic, detect frameworks, click elements, fill forms, record browser sessions, or automate any browser task. Orchestrates crawlio-agent's
|
|
3
|
+
description: Use this skill when the user asks to interact with a browser, take screenshots, inspect a page, capture network traffic, detect frameworks, click elements, fill forms, record browser sessions, or automate any browser task. Orchestrates crawlio-agent's 100 browser tools via the search + execute + connect_tab interface.
|
|
4
4
|
allowed-tools: mcp__crawlio-browser__search, mcp__crawlio-browser__execute, mcp__crawlio-browser__connect_tab
|
|
5
5
|
---
|
|
6
6
|
|
|
@@ -308,7 +308,7 @@ When you don't know the exact command, search first:
|
|
|
308
308
|
search({ query: "cookies" })
|
|
309
309
|
```
|
|
310
310
|
|
|
311
|
-
This returns matching command names, descriptions, and parameter schemas from the full catalog of
|
|
311
|
+
This returns matching command names, descriptions, and parameter schemas from the full catalog of 133 commands (100 browser + 33 desktop).
|
|
312
312
|
|
|
313
313
|
## Desktop Integration (Crawlio App)
|
|
314
314
|
|
|
@@ -466,10 +466,22 @@ const page = await smart.extractPage()
|
|
|
466
466
|
|
|
467
467
|
// Compare two pages — navigates to each, runs extractPage(), returns structured pair
|
|
468
468
|
const diff = await smart.comparePages("https://a.com", "https://b.com")
|
|
469
|
+
|
|
470
|
+
// Detect table-like structures in the DOM — returns scored candidates
|
|
471
|
+
const tables = await smart.detectTables()
|
|
472
|
+
|
|
473
|
+
// Extract data from a specific table element
|
|
474
|
+
const data = await smart.extractTable("table.pricing")
|
|
475
|
+
|
|
476
|
+
// Wait for network to become idle (no pending requests)
|
|
477
|
+
const idle = await smart.waitForNetworkIdle(5000)
|
|
478
|
+
|
|
479
|
+
// Compound extraction — detect tables + extract + network idle
|
|
480
|
+
const extracted = await smart.extractData()
|
|
469
481
|
```
|
|
470
482
|
|
|
471
483
|
For multi-page research protocols (competitive analysis, site audits), see the **web-research** skill.
|
|
472
484
|
|
|
473
485
|
## Reference
|
|
474
486
|
|
|
475
|
-
See [reference.md](./reference.md) for the full list of all
|
|
487
|
+
See [reference.md](./reference.md) for the full list of all 100 browser commands and 33 desktop commands with parameters.
|
|
@@ -113,6 +113,7 @@ When comparing sites, evaluate these dimensions:
|
|
|
113
113
|
8. **Tech Differentiation** — unique technical capabilities, architecture
|
|
114
114
|
9. **UI Quality** — design polish, loading speed, mobile responsiveness
|
|
115
115
|
10. **Conversion Friction** — signup flow, CTAs, form length, friction points
|
|
116
|
+
11. **Data Structure** — structured data presence, table extraction, schema.org
|
|
116
117
|
|
|
117
118
|
## Anti-Patterns
|
|
118
119
|
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "crawlio-browser",
|
|
3
|
-
"description": "AI skills for browser automation — screenshots, clicks, network capture, framework detection via Chrome",
|
|
4
|
-
"version": "1.4.0",
|
|
5
|
-
"author": { "name": "Crawlio" },
|
|
6
|
-
"homepage": "https://crawlio.app/agent",
|
|
7
|
-
"repository": "https://github.com/Crawlio-app/crawlio-browser-mcp",
|
|
8
|
-
"license": "MIT",
|
|
9
|
-
"keywords": ["browser-automation", "chrome", "cdp", "mcp", "agent-skills", "screenshots", "ocr", "text-extraction"]
|
|
10
|
-
}
|
package/assets/AppIcon.icns
DELETED
|
Binary file
|