crw-mcp 0.18.3 → 0.20.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 +5 -5
- package/skills/SKILL.md +4 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "crw-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.0",
|
|
4
4
|
"description": "MCP server for CRW web scraper — scrape, crawl, map, search, and PDF-parse tools for AI agents",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
6
|
"homepage": "https://github.com/us/crw",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"skills/SKILL.md"
|
|
33
33
|
],
|
|
34
34
|
"optionalDependencies": {
|
|
35
|
-
"crw-mcp-darwin-x64": "0.
|
|
36
|
-
"crw-mcp-darwin-arm64": "0.
|
|
37
|
-
"crw-mcp-linux-x64": "0.
|
|
38
|
-
"crw-mcp-linux-arm64": "0.
|
|
35
|
+
"crw-mcp-darwin-x64": "0.20.0",
|
|
36
|
+
"crw-mcp-darwin-arm64": "0.20.0",
|
|
37
|
+
"crw-mcp-linux-x64": "0.20.0",
|
|
38
|
+
"crw-mcp-linux-arm64": "0.20.0"
|
|
39
39
|
}
|
|
40
40
|
}
|
package/skills/SKILL.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: crw
|
|
3
|
-
description: "Scrape, crawl, map, and search the web using fastCRW. Use when the user needs web page content, site-wide extraction, URL discovery, or web search results. Single binary, 6 MB RAM
|
|
3
|
+
description: "Scrape, crawl, map, and search the web using fastCRW's native /v1 API. Use when the user needs web page content, site-wide extraction, URL discovery, or web search results. Single binary, 6 MB RAM; /v2 exists separately for Firecrawl migration."
|
|
4
4
|
license: AGPL-3.0
|
|
5
5
|
metadata:
|
|
6
6
|
author: us
|
|
@@ -19,7 +19,7 @@ Use this skill when:
|
|
|
19
19
|
- You need to extract content from a URL for context or research
|
|
20
20
|
- The user wants to crawl an entire website or discover its pages
|
|
21
21
|
- You need to search the web and get page content (cloud mode)
|
|
22
|
-
- The user mentions Firecrawl — CRW
|
|
22
|
+
- The user mentions Firecrawl — use native `/v1` for new CRW work; use `/v2` only when migrating existing Firecrawl v2 SDK code
|
|
23
23
|
|
|
24
24
|
## Installation
|
|
25
25
|
|
|
@@ -162,4 +162,5 @@ Available fields: `title`, `url`, `description`, `snippet`, `position`,
|
|
|
162
162
|
- Cloud API: https://fastcrw.com — 500 one-time lifetime free credits (never resets, not monthly)
|
|
163
163
|
- Docs: https://docs.fastcrw.com
|
|
164
164
|
- GitHub: https://github.com/us/crw
|
|
165
|
-
-
|
|
165
|
+
- Native API: `/v1/scrape`, `/v1/crawl`, `/v1/map`, and `/v1/search` are the recommended routes for new CRW integrations
|
|
166
|
+
- Firecrawl migration: `/v2/*` is a compatibility layer, not the default API for new builds
|