crw-mcp 0.3.5 → 0.4.0
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/package.json +7 -7
- package/skills/SKILL.md +18 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crw-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "MCP server for CRW web scraper — scrape, crawl, and map tools for AI agents",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
6
|
"homepage": "https://github.com/us/crw",
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"skills/SKILL.md"
|
|
28
28
|
],
|
|
29
29
|
"optionalDependencies": {
|
|
30
|
-
"crw-mcp-darwin-x64": "0.3.
|
|
31
|
-
"crw-mcp-darwin-arm64": "0.3.
|
|
32
|
-
"crw-mcp-linux-x64": "0.3.
|
|
33
|
-
"crw-mcp-linux-arm64": "0.3.
|
|
34
|
-
"crw-mcp-win32-x64": "0.3.
|
|
35
|
-
"crw-mcp-win32-arm64": "0.3.
|
|
30
|
+
"crw-mcp-darwin-x64": "0.3.5",
|
|
31
|
+
"crw-mcp-darwin-arm64": "0.3.5",
|
|
32
|
+
"crw-mcp-linux-x64": "0.3.5",
|
|
33
|
+
"crw-mcp-linux-arm64": "0.3.5",
|
|
34
|
+
"crw-mcp-win32-x64": "0.3.5",
|
|
35
|
+
"crw-mcp-win32-arm64": "0.3.5"
|
|
36
36
|
}
|
|
37
37
|
}
|
package/skills/SKILL.md
CHANGED
|
@@ -7,7 +7,7 @@ metadata:
|
|
|
7
7
|
version: "0.3.0"
|
|
8
8
|
homepage: https://fastcrw.com
|
|
9
9
|
repository: https://github.com/us/crw
|
|
10
|
-
allowed-tools: Bash(
|
|
10
|
+
allowed-tools: Bash(crw:*) Bash(curl:*) Read
|
|
11
11
|
---
|
|
12
12
|
|
|
13
13
|
# fastCRW — Web Data Toolkit for AI Agents
|
|
@@ -24,10 +24,10 @@ Use this skill when:
|
|
|
24
24
|
## Installation
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
|
-
|
|
27
|
+
crw fastcrw.com
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
This installs the CRW MCP server to all detected AI agents (Claude Code, Cursor, Gemini CLI, Codex, OpenCode, Windsurf, Roo Code).
|
|
30
|
+
This installs the CRW skill and MCP server to all detected AI agents (Claude Code, Cursor, Gemini CLI, Codex, OpenCode, Windsurf, Roo Code).
|
|
31
31
|
|
|
32
32
|
## Authentication
|
|
33
33
|
|
|
@@ -70,6 +70,17 @@ Parameters:
|
|
|
70
70
|
|
|
71
71
|
Returns: `{ "status": "pending|running|completed|failed", "data": [...] }`
|
|
72
72
|
|
|
73
|
+
### crw_search
|
|
74
|
+
|
|
75
|
+
Search the web and return relevant results with titles, URLs, and descriptions.
|
|
76
|
+
|
|
77
|
+
Parameters:
|
|
78
|
+
- `query` (required) — The search query
|
|
79
|
+
- `limit` — Maximum number of results to return. Default: `5`
|
|
80
|
+
- `lang` — Language code for results (e.g. `"en"`, `"tr"`)
|
|
81
|
+
- `country` — Country code for results (e.g. `"us"`, `"tr"`)
|
|
82
|
+
- `scrapeOptions` — Options for scraping each result page (e.g. `{"formats": ["markdown"]}`)
|
|
83
|
+
|
|
73
84
|
### crw_map
|
|
74
85
|
|
|
75
86
|
Discover all URLs on a website via sitemap + link extraction, without scraping content.
|
|
@@ -96,8 +107,10 @@ crw_crawl(url="https://docs.example.com", limit=50) → extract all content
|
|
|
96
107
|
crw_check_crawl_status(id="...") → poll until completed
|
|
97
108
|
```
|
|
98
109
|
|
|
99
|
-
**Search the web
|
|
100
|
-
|
|
110
|
+
**Search the web:**
|
|
111
|
+
```
|
|
112
|
+
crw_search(query="your search query", limit=5)
|
|
113
|
+
```
|
|
101
114
|
|
|
102
115
|
## Common Edge Cases
|
|
103
116
|
|