Home/Skills/Search & Research/Multi Search Engine
g_pyAng

Multi Search Engine

3 versions
g_pyAng·Feb 5, 2026

Summary

TL;DR: 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.

Multi Search Engine connects your AI agent to 17 search engines at once. Eight Chinese engines and nine global ones, including privacy-focused options like DuckDuckGo and Startpage, plus WolframAlpha for knowledge queries.

You get advanced search operators, time-based filters, and site-specific searches out of the box. No API keys needed for any of the engines.

This is the skill you want when a single search engine is not enough. See all search & research skills to compare options. Compare results across providers, find region-specific content, or tap into WolframAlpha for math and science queries. All from one command.

Use cases

  • Comparing search results from multiple engines to get broader coverage
  • Finding Chinese-language content through Baidu, Sogou, and other CN engines
  • Running privacy-focused searches through DuckDuckGo or Startpage
  • Getting factual answers to math and science questions via WolframAlpha

Installation

Run this command to install the skill on your OpenClaw agent:

Install with OpenClaw
npx clawhub@latest install multi-search-engine
Downloads
71.5k
Active installs
1k
Stars
359
Updated
Feb 5, 2026

Security scan

Security scan
VirusTotalBenign
View report
OpenClawBenignhigh confidence

The skill's files and runtime instructions are internally consistent with a multi-search integration: it only documents URL templates and web_fetch examples and does not request extra credentials or install anything.

Purpose & Capability
Instruction Scope
Install Mechanism
Credentials
Persistence & Privilege

SKILL.md

SKILL.md
---
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."
---

# 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

```javascript
// 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

Version history

v2.0.1Latest
Feb 5, 2026

**Multi-search-engine v2.0.1 Changelog** - Updated documentation for conciseness, focusing on essential usage, supported engines, operators, and example queries. - Removed the file `references/advanced-search.md` to streamline advanced search documentation. - Revised and unified description to highlight 17 search engines, advanced operators, privacy-focused engines, and knowledge computation. - Cleaned up and reorganized SKILL.md; made operator and time filter tables clearer for easier reference. - Updated metadata in config and documentation files for accuracy and clarity.

v2.0.0
Feb 5, 2026

multi-search-engine v2.0.0 - 增加对9个国际主流搜索引擎(如Google、DuckDuckGo、Yahoo、Brave、WolframAlpha等)的支持,当前共集成17个搜索引擎。 - 支持更多高级搜索功能:新增高级搜索操作符、时间筛选、站点限定、文件类型和隐私保护搜索说明。 - 新增专业领域和国际搜索引擎的特色用法文档。 - 新增配置和元数据文件(config.json, metadata.json)。 - 文档全面更新,加入国内外场景选择建议、各引擎高级参数、国际搜索专章、知识计算支持等。

v1.0.0
Feb 4, 2026

Initial release: 集成7大中文搜索引擎(百度、必应国内/国际版、360、搜狗、搜狗微信、头条),支持网页抓取方式搜索,无需API密钥。包含高级搜索参数指南(时间筛选、站点搜索、文档类型等)。

Frequently asked questions

It supports 17 engines total. Eight Chinese engines (including Baidu, Sogou, and 360 Search) and nine global engines (including Google, Bing, DuckDuckGo, Startpage, and WolframAlpha).

Installation method

Send this prompt to your agent to install the skill

npx clawhub@latest install multi-search-engine
Download ZIP

Skill info

Versionv2.0.1
Authorg_pyAng
UpdatedFeb 5, 2026

Files

SKILL.md3.3 KB

Run OpenClaw in the cloud

Deploy in seconds. Skills pre-installed.

See plans

Skill data sourced from ClawHub