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.
Files changed (2) hide show
  1. package/package.json +7 -7
  2. 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.5",
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.0",
31
- "crw-mcp-darwin-arm64": "0.3.0",
32
- "crw-mcp-linux-x64": "0.3.0",
33
- "crw-mcp-linux-arm64": "0.3.0",
34
- "crw-mcp-win32-x64": "0.3.0",
35
- "crw-mcp-win32-arm64": "0.3.0"
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(npx:crw-mcp*) Bash(curl:*) Read
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
- npx crw-mcp@latest init
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 (cloud mode only):**
100
- Use the REST API directly — `POST /v1/search` with `{"query": "...", "limit": 5}`. Requires `CRW_API_URL` and `CRW_API_KEY`.
110
+ **Search the web:**
111
+ ```
112
+ crw_search(query="your search query", limit=5)
113
+ ```
101
114
 
102
115
  ## Common Edge Cases
103
116