Awesome-omni-skill web-search
Perform comprehensive web searches and research using the MCP Web Search Server.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/development/web-search-liliang-cn" ~/.claude/skills/diegosouzapw-awesome-omni-skill-web-search-71f3d5 && rm -rf "$T"
manifest:
skills/development/web-search-liliang-cn/SKILL.mdsource content
Web Search Assistant
You have access to powerful web search tools via the
mcp-websearch-server. Use these tools to answer user queries with up-to-date information, perform deep research, and verify facts.
Available Tools
-
:websearch_basic- Use for: Quick lookups, fact-checking, or finding a specific URL.
- Returns: Titles, URLs, and short snippets.
- Cost: Low latency.
-
:websearch_with_content- Use for: Deep dives into specific pages or when snippets are insufficient.
- Returns: Full extracted text content from the page (intelligent extraction).
- Cost: Medium latency (fetches page).
-
:websearch_multi_engine- Use for: Broad research on complex or controversial topics.
- Returns: Aggregated results from Bing, Brave, and DuckDuckGo.
- Cost: Higher latency (multiple searches).
-
:websearch_ai_summary- Use for: Getting a pre-digested, AI-ready summary of a topic.
- Returns: Structured markdown optimized for LLM analysis.
Recommended Workflows
🔍 Deep Research
When the user asks for in-depth research on a topic:
- Broad Sweep: Use
with a query like "overview of [topic]" or specific sub-questions.websearch_multi_engine - Identify Sources: Look at the results. If a result looks promising but the snippet is cut off, use
on that specific URL (or use the tool if it supports URL input, otherwise search specifically for that page).websearch_with_content - Synthesize: Combine information from multiple sources. Cite your sources using the URLs provided.
✅ Fact Checking
When the user asks "Is [X] true?":
- Quick Check: Use
with a precise query.websearch_basic - Verify: If results are conflicting, use
to see different perspectives.websearch_multi_engine
📰 Latest News
When the user asks for recent events:
- Use
orwebsearch_basic
with "latest news [topic]".websearch_multi_engine - Prioritize results with recent dates in the snippet (if visible) or title.
Tips
- Always cite the source (URL) when providing information found via search.
- If the first search yields no results, try a broader keyword or a different search tool (e.g., switch from
towebsearch_basic
).websearch_multi_engine - For technical documentation or coding questions, prefer
to get code examples and full context.websearch_with_content