donsetch 0.5.0-beta.1 → 1.1.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/README.md +20 -40
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,12 +1,12 @@
1
1
  # DonSeTch
2
2
 
3
- > Web fetch, search and crawl for AI agents. Zero API keys.
3
+ > Web fetch, search, and crawl for AI agents. Zero API keys. Chrome-true TLS. Built in Rust.
4
4
 
5
- [![CI](https://github.com/dondai44423/donsetch/actions/workflows/ci.yml/badge.svg)](https://github.com/dondai44423/donsetch/actions/workflows/ci.yml)
5
+ [![Release](https://img.shields.io/github/v/release/dondai44423/donsetch?color=00d4aa&style=flat-square)](https://github.com/dondai44423/donsetch/releases)
6
+ [![CI](https://img.shields.io/github/actions/workflow/status/dondai44423/donsetch/ci.yml?label=CI&style=flat-square)](https://github.com/dondai44423/donsetch/actions/workflows/ci.yml)
7
+ [![License: AGPL-3.0](https://img.shields.io/badge/License-AGPL--3.0-00d4aa?style=flat-square)](https://github.com/dondai44423/donsetch/blob/master/LICENSE)
6
8
 
7
- DonSeTch is an MCP server that gives AI agents web research capabilities:
8
- fetch any URL, search across 10+ engines, and crawl multi-page docs —
9
- all with Chrome-true TLS fingerprinting and zero API keys.
9
+ DonSeTch gives AI agents web research from a single local process — fetch any URL, search across 10+ engines, and crawl multi-page docs. Chrome-true TLS fingerprinting, bot-wall bypass, PDF extraction with OCR, semantic reranking. Zero API keys.
10
10
 
11
11
  ## Install
12
12
 
@@ -14,8 +14,7 @@ all with Chrome-true TLS fingerprinting and zero API keys.
14
14
  npm install -g donsetch
15
15
  ```
16
16
 
17
- The postinstall script downloads the prebuilt binary for your platform
18
- from [GitHub Releases](https://github.com/dondai44423/donsetch/releases).
17
+ Downloads the prebuilt binary for your platform from [GitHub Releases](https://github.com/dondai44423/donsetch/releases) with SHA256 verification.
19
18
 
20
19
  | Platform | Binary |
21
20
  |---|---|
@@ -23,62 +22,43 @@ from [GitHub Releases](https://github.com/dondai44423/donsetch/releases).
23
22
  | macOS arm64 | `donsetch-darwin-arm64.tar.gz` |
24
23
  | Windows x86_64 | `donsetch-win32-x64.tar.gz` |
25
24
 
26
- ## Usage
25
+ ## Two ways to use it
27
26
 
28
- ```bash
29
- # Fetch a URL (Chrome-true TLS, anti-bot bypass)
30
- donsetch fetch https://example.com
31
-
32
- # Search (10+ keyless backends, semantic reranking)
33
- donsetch search "rust async patterns"
34
-
35
- # Crawl (sitemap-aware, focus-filtered)
36
- donsetch crawl https://docs.example.com --focus "api reference"
37
-
38
- # Start MCP server (for Claude Code, Cursor, Pi, etc.)
39
- donsetch mcp
40
- ```
41
-
42
- ## MCP Configuration
43
-
44
- Add to your MCP client config:
27
+ ### MCP Server (for AI agents)
45
28
 
46
29
  ```json
47
30
  {
48
31
  "mcpServers": {
49
- "donsetch": {
50
- "command": "donsetch",
51
- "args": ["mcp"]
52
- }
32
+ "donsetch": { "command": "donsetch", "args": ["mcp"] }
53
33
  }
54
34
  }
55
35
  ```
56
36
 
57
- Or use `npx` without global install:
37
+ Or with `npx` (no global install):
58
38
 
59
39
  ```json
60
40
  {
61
41
  "mcpServers": {
62
- "donsetch": {
63
- "command": "npx",
64
- "args": ["donsetch", "mcp"]
65
- }
42
+ "donsetch": { "command": "npx", "args": ["donsetch", "mcp"] }
66
43
  }
67
44
  }
68
45
  ```
69
46
 
70
47
  Three tools: `web_fetch`, `web_search`, `web_crawl`.
71
48
 
72
- ## Build from source
73
-
74
- Requirements: Rust 1.75+, Go 1.22+, NASM, LLVM/Clang (for BoringSSL bindgen).
49
+ ### CLI (for humans and scripts)
75
50
 
76
51
  ```bash
77
- git clone https://github.com/dondai44423/donsetch
78
- cd donsetch
79
- cargo build --release
52
+ donsetch fetch https://example.com
53
+ donsetch search "rust async patterns"
54
+ donsetch crawl https://docs.example.com --topic "api reference"
55
+ donsetch keys add tinyfish sk-tinyfish-...
56
+ donsetch doctor
57
+ donsetch update
80
58
  ```
81
59
 
82
60
  ## License
83
61
 
84
62
  AGPL-3.0 — Copyright (c) 2026 Bishesh Bhandari
63
+
64
+ Full documentation: [github.com/dondai44423/donsetch](https://github.com/dondai44423/donsetch)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "donsetch",
3
- "version": "0.5.0-beta.1",
3
+ "version": "1.1.0",
4
4
  "description": "Web fetch, search and crawl for AI agents. Zero API keys. Chrome-true TLS.",
5
5
  "license": "AGPL-3.0-only",
6
6
  "author": "Bishesh Bhandari",