webpeel 0.12.3 → 0.13.1
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 +330 -261
- package/dist/core/markdown.d.ts.map +1 -1
- package/dist/core/markdown.js +36 -0
- package/dist/core/markdown.js.map +1 -1
- package/dist/core/search-provider.d.ts +6 -0
- package/dist/core/search-provider.d.ts.map +1 -1
- package/dist/core/search-provider.js +77 -1
- package/dist/core/search-provider.js.map +1 -1
- package/dist/server/routes/mcp.d.ts.map +1 -1
- package/dist/server/routes/mcp.js +370 -13
- package/dist/server/routes/mcp.js.map +1 -1
- package/dist/server/routes/search.d.ts.map +1 -1
- package/dist/server/routes/search.js +14 -1
- package/dist/server/routes/search.js.map +1 -1
- package/llms.txt +2 -2
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -52,7 +52,7 @@ Base URL: `https://api.webpeel.dev`
|
|
|
52
52
|
- `POST /v2/scrape` — Firecrawl-compatible endpoint (drop-in replacement)
|
|
53
53
|
- `GET /health` — API health check
|
|
54
54
|
|
|
55
|
-
Authentication: `Authorization: Bearer YOUR_API_KEY` or anonymous (
|
|
55
|
+
Authentication: `Authorization: Bearer YOUR_API_KEY` or anonymous (500 free fetches/week, no signup required).
|
|
56
56
|
|
|
57
57
|
## MCP Tools
|
|
58
58
|
|
|
@@ -102,7 +102,7 @@ Hosted MCP (no local install): `https://api.webpeel.dev/mcp`
|
|
|
102
102
|
|
|
103
103
|
## Pricing
|
|
104
104
|
|
|
105
|
-
- **Free**:
|
|
105
|
+
- **Free**: 500 fetches/week, 50/hr burst — no credit card required
|
|
106
106
|
- **Pro**: $9/mo — 1,250/week, 100/hr burst
|
|
107
107
|
- **Max**: $29/mo — 6,250/week, 500/hr burst
|
|
108
108
|
- All features on all plans (no feature-gating)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webpeel",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.1",
|
|
4
4
|
"description": "Fast web fetcher for AI agents - stealth mode, crawl mode, page actions, structured extraction, PDF parsing, smart escalation from simple HTTP to headless browser",
|
|
5
5
|
"author": "Jake Liu",
|
|
6
6
|
"license": "AGPL-3.0-only",
|