Multi Search Engine OpenClaw Skill
Multi search engine integration with 16 engines (7 CN + 9 Global). Supports advanced search operators, time filters, site search, privacy engines, and Wolfra...
Installation
clawhub install multi-search-engine
Requires npm i -g clawhub
130.5k
Downloads
611
Stars
1.9k
current installs
1.9k all-time
7
Versions
Power your OpenClaw skills with
the best open-source models.
Drop-in OpenAI-compatible API. No data leaves Europe.
Explore Inference APIGLM
GLM 5
$1.00 / $3.20
per M tokens
Kimi
Kimi K2.5
$0.60 / $2.80
per M tokens
MiniMax
MiniMax M2.5
$0.30 / $1.20
per M tokens
Qwen
Qwen3.5 122B
$0.40 / $3.00
per M tokens
Multi Search Engine
Integration of 16 search engines for web crawling without API keys.
Workflow
Preparation: AI Agent initializes an empty in-memory cookie store. Cookies are only acquired dynamically during search operations when access is denied
Language Evaluation: Detect the language attribute of the search query. If the query is in Chinese, use Domestic search engines (Baidu, Bing CN, Bing INT, 360, Sogou, WeChat, Shenma). If the query is non-Chinese, use International search engines (Google, Google HK, DuckDuckGo, Yahoo, Startpage, Brave, Ecosia, Qwant, WolframAlpha). Select engines based on query relevance and availability.
Controlled Search: Use web_fetch to execute search requests with rate limiting:
- Add 1-2 second delay between requests to respect server load
- Batch requests in groups of 3-4 engines with sequential execution between batches
- Include standard browser headers to identify as legitimate user agent
- If access is denied (403/429), fetch engine homepage to obtain fresh session cookies
Cookie Management:
- Cookies are stored ONLY in memory during runtime
- Cookies are acquired on-demand when search requests fail
- No cookies are read from or written to config.json or any file
- Cookies are cleared after search session completes
- Only session cookies from search engine domains are captured
Retry Mechanism: If a search fails due to cookie/session issues, retry once with freshly acquired cookies after a 2-second delay
Result Aggregation: Consolidate successful results from search engines, organize and summarize them to output a core search report
Search Engines
Domestic (7)
- Baidu:
https://www.baidu.com/s?wd={keyword} - Bing CN:
https://cn.bing.com/search?q={keyword}&ensearch=0 - Bing INT:
https://cn.bing.com/search?q={keyword}&ensearch=1 - 360:
https://www.so.com/s?q={keyword} - Sogou:
https://sogou.com/web?query={keyword} - WeChat:
https://wx.sogou.com/weixin?type=2&query={keyword} - Shenma:
https://m.sm.cn/s?q={keyword}
International (9)
- Google:
https://www.google.com/search?q={keyword} - Google HK:
https://www.google.com.hk/search?q={keyword} - DuckDuckGo:
https://duckduckgo.com/html/?q={keyword} - Yahoo:
https://search.yahoo.com/search?p={keyword} - Startpage:
https://www.startpage.com/sp/search?query={keyword} - Brave:
https://search.brave.com/search?q={keyword} - Ecosia:
https://www.ecosia.org/search?q={keyword} - Qwant:
https://www.qwant.com/?q={keyword} - WolframAlpha:
https://www.wolframalpha.com/input?i={keyword}
Quick Examples
// Basic search
web_fetch({"url": "https://www.google.com/search?q=python+tutorial"})
// Site-specific
web_fetch({"url": "https://www.google.com/search?q=site:github.com+react"})
// File type
web_fetch({"url": "https://www.google.com/search?q=machine+learning+filetype:pdf"})
// Time filter (past week)
web_fetch({"url": "https://www.google.com/search?q=ai+news&tbs=qdr:w"})
// Privacy search
web_fetch({"url": "https://duckduckgo.com/html/?q=privacy+tools"})
// DuckDuckGo Bangs
web_fetch({"url": "https://duckduckgo.com/html/?q=!gh+tensorflow"})
// Knowledge calculation
web_fetch({"url": "https://www.wolframalpha.com/input?i=100+USD+to+CNY"})
Advanced Operators
| Operator | Example | Description |
|---|---|---|
site: |
site:github.com python |
Search within site |
filetype: |
filetype:pdf report |
Specific file type |
"" |
"machine learning" |
Exact match |
- |
python -snake |
Exclude term |
OR |
cat OR dog |
Either term |
Time Filters
| Parameter | Description |
|---|---|
tbs=qdr:h |
Past hour |
tbs=qdr:d |
Past day |
tbs=qdr:w |
Past week |
tbs=qdr:m |
Past month |
tbs=qdr:y |
Past year |
Privacy Engines
- DuckDuckGo: No tracking
- Startpage: Google results + privacy
- Brave: Independent index
- Qwant: EU GDPR compliant
Bangs Shortcuts (DuckDuckGo)
| Bang | Destination |
|---|---|
!g |
|
!gh |
GitHub |
!so |
Stack Overflow |
!w |
Wikipedia |
!yt |
YouTube |
WolframAlpha Queries
- Math:
integrate x^2 dx - Conversion:
100 USD to CNY - Stocks:
AAPL stock - Weather:
weather in Beijing
Documentation
references/advanced-search.md- Domestic search guidereferences/international-search.md- International search guideCHANGELOG.md- Version history
License
MIT
Security & Privacy Notice
Cookie Handling
- Purpose: Cookies are used ONLY to maintain search session state when access is denied (403/429 errors)
- Storage: Cookies are kept STRICTLY in memory during runtime - NEVER persisted to disk or config files
- Acquisition: Cookies are acquired on-demand from search engine homepages only when search requests fail
- Scope: Only session cookies from the specific search engine domain are captured
- Lifecycle: Cookies are cleared immediately after the search session completes
- No Pre-configuration: No cookies are loaded from config.json or any external file at startup
- No API Keys: This tool uses standard web search URLs, no authentication required
Crawling Ethics
- Rate Limiting: Implement reasonable delays between requests (recommend 1-2 seconds)
- Respect robots.txt: Honor search engine crawling policies
- Terms of Service: Users are responsible for complying with search engine ToS
- Purpose: Designed for legitimate search aggregation, not mass data scraping
Data Handling
- No Personal Data: Tool does not collect or transmit user personal information
- Local Execution: All operations run locally, no external data transmission
- Session Isolation: Cookies are session-specific and cleared after use
Statistics
Author
g_pyAng
@gpyangyoujun
Latest Changes
v2.1.3 · Apr 11, 2026
**Summary:** This version updates cookie handling and search execution policies for increased privacy and more ethical crawling. - Switched to initializing an empty in-memory cookie store; no cookies are pre-loaded from files. - Cookies are acquired dynamically only when a search request is denied and cleared immediately after the session. - Only relevant search engines are queried, based on language and engine availability, rather than always searching all engines in a category. - Introduced stricter rate limiting (1-2 second delays, batch sizes of 3-4) to control request flow. - Strengthened privacy statements: cookies are held strictly in memory and never written to disk or config files. - Improved documentation of search logic, cookie management, and crawling ethics.
Quick Install
clawhub install multi-search-engine Related Skills
Other popular skills you might find useful.
Chat with 100+ AI Models in one App.
Use Claude, ChatGPT, Gemini alongside with EU-Hosted Models like Deepseek, GLM-5, Kimi K2.5 and many more.