multi-search-engine

Constructs search URLs for 8 Chinese search engines with advanced operators and time filters.

Updated Mar 30, 2026
One-click install
npx skills add https://github.com/tmtgroupbot/lptracker-deploy --skill multi-search-engine-tmtgroupbot
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: multi-search-engine
Source: https://github.com/tmtgroupbot/lptracker-deploy/tree/main/skills/multi-search-engine
Command: npx skills add https://github.com/tmtgroupbot/lptracker-deploy --skill multi-search-engine-tmtgroupbot

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Searching Chinese-language content across multiple domestic search engines requires knowing each engine's URL structure, query parameters, and supported operators, which is tedious to manage manually. ## Core Features & Use Cases - Multi-Engine URL Templates: Pre-built query URLs for Baidu, Bing CN/INT, 360, Sogou, WeChat, Toutiao, and Jisilu, requiring no API keys. - Advanced Search Operators: Supports site:, filetype:, exact-match quotes, exclusion, and OR operators plus time filters (hour/day/week/month/year). - Specialized Content Search: Dedicated endpoints for WeChat public articles, Toutiao trending news, and Jisilu financial data. - Use Case: A researcher tracking Chinese market sentiment can query WeChat articles via Sogou, pull financial discussions from Jisilu, and cross-check news on Toutiao, all through simple web_fetch calls. ## Quick Start Ask the AI to search Baidu for a keyword, or request a site-specific search like finding Python tutorials on GitHub via Bing CN.

Frequently Asked Questions about multi-search-engine

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search Chinese websites without an API key?

Build direct search URLs for engines like Baidu, Sogou, or 360 and fetch them with web_fetch. For example, use https://www.baidu.com/s?wd={keyword} with your URL-encoded keyword, no authentication required.

How to search WeChat public account articles programmatically?

Use Sogou's WeChat search endpoint at https://wx.sogou.com/weixin?type=2&query={keyword}. This returns articles from WeChat public accounts matching your keyword, which is the standard way to search WeChat content externally.

What search operators does Baidu support?

Baidu supports site: for domain-restricted search, filetype: for specific document formats, double quotes for exact phrases, minus sign for exclusions, and OR for alternative terms. These can be combined in a single query string.

Does this skill support international search engines like Google?

The core skill covers 8 domestic Chinese engines. An archived reference file documents international engines like Google, DuckDuckGo, Brave, and WolframAlpha, but these are kept as reference material rather than active configuration.

How do I filter search results by time period?

Append time filter parameters to the search URL, such as tbs=qdr:h for the past hour, qdr:d for past day, qdr:w for week, qdr:m for month, or qdr:y for year. These parameters work on engines supporting Google's time filter syntax.