one-search-mcp 1.0.6 → 1.0.10

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 CHANGED
@@ -1,13 +1,17 @@
1
1
  # 🚀 OneSearch MCP Server: Web Search & Crawl & Scraper & Extract
2
2
 
3
- A Model Context Protocol (MCP) server implementation that integrates with Searxng/Firecrawl/Tavily for web search and scraping capabilities.
3
+ A Model Context Protocol (MCP) server implementation that integrates with Searxng/Tavily/DuckDuckGo/Bing for web search, local browser search, and scraping capabilities with Firecrawl.
4
4
 
5
5
  ## Features
6
6
 
7
7
  - Web Search, scrape, crawl and extract content from websites.
8
- - Support multiple search engines and web scrapers: SearXNG, Firecrawl, Tavily, etc.
8
+ - Support multiple search engines and web scrapers: **SearXNG**, **Firecrawl**, **Tavily**, **DuckDuckGo**, **Bing**, etc.
9
+ - **Local web search** (browser search), support multiple search engines: **Bing**, **Google**, **Baidu**, **Sogou**, etc.
10
+ - Use `puppeteer-core` to scrape content from websites.
11
+ - You should have a local browser installed, such as `Chromium`, `Google Chrome`, `Google Chrome Canary`, etc.
12
+ - Free, no keys required.
13
+ - **Enabled tools:** `one_search`, `one_scrape`, `one_map`
9
14
  - Support for self-hosted: SearXNG, Firecrawl, etc. (see [Deploy](./deploy/README.md))
10
- - **Enabled tools:** `one_search`, `one_scrape`
11
15
 
12
16
  ## Installation
13
17
 
@@ -23,11 +27,16 @@ env SEARCH_API_URL=http://127.0.0.1:8080 FIRECRAWL_API_URL=http://127.0.0.1:3002
23
27
 
24
28
  ## Environment Variables
25
29
 
26
- **Search:**
30
+ **Search Engine:**
27
31
 
28
- - SEARCH_PROVIDER (Optional): The search provider to use, either `searxng` or `tavily`, default is `searxng`.
29
- - SEARCH_API_URL (Optional): The URL of the SearxNG API, required for `searxng`.
30
- - SEARCH_API_KEY (Optional): The API key for the search provider, required for `tavily`.
32
+ - **SEARCH_PROVIDER** (Optional): The search provider to use, supports `searxng`, `duckduckgo`, `bing`, `tavily`, `local`, default is `local`.
33
+ - **SEARCH_API_URL** (Optional): The URL of the SearxNG API, required for `searxng`.
34
+ - **SEARCH_API_KEY** (Optional): The API key for the search provider, required for `tavily`, `bing`.
35
+
36
+ ```ts
37
+ // supported search providers
38
+ export type SearchProvider = 'searxng' | 'duckduckgo' | 'bing' | 'tavily' | 'local';
39
+ ```
31
40
 
32
41
  **Firecrawl:**
33
42
 
@@ -82,6 +91,10 @@ Add this to your `./codeium/windsurf/model_config.json` file:
82
91
 
83
92
  Local deployment of SearXNG and Firecrawl, please refer to [Deploy](./deploy/README.md)
84
93
 
94
+ ## Troubleshooting
95
+
96
+ - [ReferenceError]: __name is not defined: This is because Puppeteer has problems with `tsx`, [esbuild#1031](https://github.com/evanw/esbuild/issues/1031)
97
+
85
98
  ## License
86
99
 
87
100
  MIT License - see [LICENSE](./LICENSE) file for details.