🛠️ Multi検索エンジン
複数の検索エンジン(中国語8種、
📜 元の英語説明(参考)
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.
🇯🇵 日本人クリエイター向け解説
複数の検索エンジン(中国語8種、
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o multi-search-engine.zip https://jpskill.com/download/5081.zip && unzip -o multi-search-engine.zip && rm multi-search-engine.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/5081.zip -OutFile "$d\multi-search-engine.zip"; Expand-Archive "$d\multi-search-engine.zip" -DestinationPath $d -Force; ri "$d\multi-search-engine.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
multi-search-engine.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
multi-search-engineフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-17
- 取得日時
- 2026-05-18
- 同梱ファイル
- 2
💬 こう話しかけるだけ — サンプルプロンプト
- › Multi Search Engine を使って、最小構成のサンプルコードを示して
- › Multi Search Engine の主な使い方と注意点を教えて
- › Multi Search Engine を既存プロジェクトに組み込む方法を教えて
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Multi Search Engine v2.0.1
APIキーなしでウェブクローリングを行うための17の検索エンジンの統合です。
検索エンジン
国内 (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}
海外 (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}
簡単な例
// 基本的な検索
web_fetch({"url": "https://www.google.com/search?q=python+tutorial"})
// サイト指定
web_fetch({"url": "https://www.google.com/search?q=site:github.com+react"})
// ファイルタイプ
web_fetch({"url": "https://www.google.com/search?q=machine+learning+filetype:pdf"})
// 期間フィルター (過去1週間)
web_fetch({"url": "https://www.google.com/search?q=ai+news&tbs=qdr:w"})
// プライバシー検索
web_fetch({"url": "https://duckduckgo.com/html/?q=privacy+tools"})
// DuckDuckGo Bangs
web_fetch({"url": "https://duckduckgo.com/html/?q=!gh+tensorflow"})
// 知識計算
web_fetch({"url": "https://www.wolframalpha.com/input?i=100+USD+to+CNY"})
高度な演算子
| 演算子 | 例 | 説明 |
|---|---|---|
site: |
site:github.com python |
サイト内検索 |
filetype: |
filetype:pdf report |
特定のファイルタイプ |
"" |
"machine learning" |
完全一致 |
- |
python -snake |
語句を除外 |
OR |
cat OR dog |
いずれかの語句 |
期間フィルター
| パラメータ | 説明 |
|---|---|
tbs=qdr:h |
過去1時間 |
tbs=qdr:d |
過去1日 |
tbs=qdr:w |
過去1週間 |
tbs=qdr:m |
過去1ヶ月 |
tbs=qdr:y |
過去1年 |
プライバシー重視のエンジン
- DuckDuckGo: トラッキングなし
- Startpage: Google検索結果 + プライバシー
- Brave: 独立したインデックス
- Qwant: EU GDPR準拠
Bangsショートカット (DuckDuckGo)
| Bang | 検索先 |
|---|---|
!g |
|
!gh |
GitHub |
!so |
Stack Overflow |
!w |
Wikipedia |
!yt |
YouTube |
WolframAlphaクエリ
- 数学:
integrate x^2 dx - 換算:
100 USD to CNY - 株式:
AAPL stock - 天気:
weather in Beijing
ドキュメント
references/advanced-search.md- 国内検索ガイドreferences/international-search.md- 海外検索ガイドCHANGELOG.md- バージョン履歴
ライセンス
MIT
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
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 |
|
!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
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (3,372 bytes)
- 📎 references/international-search.md (23,161 bytes)