File contents Multi Search Engine
多搜索引擎集成,支持17个引擎。
name: multi-search-engine
description: "Multi search engine integration with 17 engines (8 CN + 9 Global). Supports advanced search operators, time filters, site search, privacy engines, and WolframAlpha knowledge queries. No API keys required."
description_zh: "集成 17 个搜索引擎(8 国内 + 9 国际),无需 API"
description_en: "Multi search engine integration with 17 engines (8 CN + 9 Global), no API keys"
version: 2.0.1
Multi Search Engine v2.0.1
Integration of 17 search engines for web crawling without API keys.
Search Engines
Domestic (8)
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}
Toutiao : https://so.toutiao.com/search?keyword={keyword}
Jisilu : https://www.jisilu.cn/explore/?keyword={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
Google
!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 guide
references/international-search.md - International search guide
CHANGELOG.md - Version history
License
MIT
1 --- 2 name: multi-search-engine 3 description: Multi Search Engine 4 --- 5 # Multi Search Engine 6 7 多搜索引擎集成,支持17个引擎。 8 9 --- 10 name: multi-search-engine 11 description: "Multi search engine integration with 17 engines (8 CN + 9 Global). Supports advanced search operators, time filters, site search, privacy engines, and WolframAlpha knowledge queries. No API keys required." 12 description_zh: "集成 17 个搜索引擎(8 国内 + 9 国际),无需 API" 13 description_en: "Multi search engine integration with 17 engines (8 CN + 9 Global), no API keys" 14 version: 2.0.1 15 --- 16 17 # Multi Search Engine v2.0.1 18 19 Integration of 17 search engines for web crawling without API keys. 20 21 ## Search Engines 22 23 ### Domestic (8) 24 - **Baidu**: `https://www.baidu.com/s?wd={keyword}` 25 - **Bing CN**: `https://cn.bing.com/search?q={keyword}&ensearch=0` 26 - **Bing INT**: `https://cn.bing.com/search?q={keyword}&ensearch=1` 27 - **360**: `https://www.so.com/s?q={keyword}` 28 - **Sogou**: `https://sogou.com/web?query={keyword}` 29 - **WeChat**: `https://wx.sogou.com/weixin?type=2&query={keyword}` 30 - **Toutiao**: `https://so.toutiao.com/search?keyword={keyword}` 31 - **Jisilu**: `https://www.jisilu.cn/explore/?keyword={keyword}` 32 33 ### International (9) 34 - **Google**: `https://www.google.com/search?q={keyword}` 35 - **Google HK**: `https://www.google.com.hk/search?q={keyword}` 36 - **DuckDuckGo**: `https://duckduckgo.com/html/?q={keyword}` 37 - **Yahoo**: `https://search.yahoo.com/search?p={keyword}` 38 - **Startpage**: `https://www.startpage.com/sp/search?query={keyword}` 39 - **Brave**: `https://search.brave.com/search?q={keyword}` 40 - **Ecosia**: `https://www.ecosia.org/search?q={keyword}` 41 - **Qwant**: `https://www.qwant.com/?q={keyword}` 42 - **WolframAlpha**: `https://www.wolframalpha.com/input?i={keyword}` 43 44 ## Quick Examples 45 46 ```javascript 47 // Basic search 48 web_fetch({"url": "https://www.google.com/search?q=python+tutorial"}) 49 50 // Site-specific 51 web_fetch({"url": "https://www.google.com/search?q=site:github.com+react"}) 52 53 // File type 54 web_fetch({"url": "https://www.google.com/search?q=machine+learning+filetype:pdf"}) 55 56 // Time filter (past week) 57 web_fetch({"url": "https://www.google.com/search?q=ai+news&tbs=qdr:w"}) 58 59 // Privacy search 60 web_fetch({"url": "https://duckduckgo.com/html/?q=privacy+tools"}) 61 62 // DuckDuckGo Bangs 63 web_fetch({"url": "https://duckduckgo.com/html/?q=!gh+tensorflow"}) 64 65 // Knowledge calculation 66 web_fetch({"url": "https://www.wolframalpha.com/input?i=100+USD+to+CNY"}) 67 ``` 68 69 ## Advanced Operators 70 71 | Operator | Example | Description | 72 |----------|---------|-------------| 73 | `site:` | `site:github.com python` | Search within site | 74 | `filetype:` | `filetype:pdf report` | Specific file type | 75 | `""` | `"machine learning"` | Exact match | 76 | `-` | `python -snake` | Exclude term | 77 | `OR` | `cat OR dog` | Either term | 78 79 ## Time Filters 80 81 | Parameter | Description | 82 |-----------|-------------| 83 | `tbs=qdr:h` | Past hour | 84 | `tbs=qdr:d` | Past day | 85 | `tbs=qdr:w` | Past week | 86 | `tbs=qdr:m` | Past month | 87 | `tbs=qdr:y` | Past year | 88 89 ## Privacy Engines 90 91 - **DuckDuckGo**: No tracking 92 - **Startpage**: Google results + privacy 93 - **Brave**: Independent index 94 - **Qwant**: EU GDPR compliant 95 96 ## Bangs Shortcuts (DuckDuckGo) 97 98 | Bang | Destination | 99 |------|-------------| 100 | `!g` | Google | 101 | `!gh` | GitHub | 102 | `!so` | Stack Overflow | 103 | `!w` | Wikipedia | 104 | `!yt` | YouTube | 105 106 ## WolframAlpha Queries 107 108 - Math: `integrate x^2 dx` 109 - Conversion: `100 USD to CNY` 110 - Stocks: `AAPL stock` 111 - Weather: `weather in Beijing` 112 113 ## Documentation 114 115 - `references/advanced-search.md` - Domestic search guide 116 - `references/international-search.md` - International search guide 117 - `CHANGELOG.md` - Version history 118 119 ## License 120 121 MIT
tugoukezhang/workbuddy-skills/tree/main/skills/multi-search-engine commit 017f7bdd70
Frequently asked questions How do I install the Multi Search Engine skill? Run npx skillmds@latest add tugoukezhang/multi-search-engine in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the Multi Search Engine skill do? Multi Search Engine It is listed under Coding & Dev Tools on SkillMD.
Is Multi Search Engine safe to use? This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with Multi Search Engine? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is Multi Search Engine free to use? Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Who published Multi Search Engine? tugoukezhang (@tugoukezhang) published this skill. Their other Agent Skills are listed on their SkillMD profile.