← 返回 Skills 市场
wanghan0501

Deep Research with MCP

作者 wanghan0501 · GitHub ↗ · v1.1.1 · MIT-0
cross-platform ✓ 安全检测通过
329
总下载
0
收藏
3
当前安装
2
版本数
在 OpenClaw 中安装
/install deep-research-with-mcp
功能描述
Multi-source deep research agent using MCP search tools (minimax web_search or zai-mcp-server web_search_prime).
使用说明 (SKILL.md)

Deep Research with MCP 🔬

A powerful, self-contained deep research skill that produces thorough, cited reports from multiple web sources. Uses MCP-configured search tools (minimax web_search or zai-mcp-server web_search_prime).

Prerequisites

Before using this skill, ensure you have configured at least one MCP search tool:

  1. MiniMax web_search (recommended)

    • Configure via minimax MCP server with web_search tool
  2. web-search-prime web_search_prime

    • Configure via web-search-prime MCP server with web_search_prime tool

If neither MCP is configured, the skill will not work.

How It Works

When the user asks for research on any topic, follow this workflow:

Step 0: Check MCP Search Availability

First verify MCP search tool availability:

# Check available MCP servers via mcporter
mcporter list

Priority:

  1. MiniMax.web_search
    mcporter call MiniMax.web_search query:"keyword"
    
  2. web-search-prime.web_search_prime
    mcporter call web-search-prime.web_search_prime search_query:"keyword"
    

Step 1: Understand the Goal (30 seconds)

Ask 1-2 quick clarifying questions:

  • "What's your goal — learning, making a decision, or writing something?"
  • "Any specific angle or depth you want?"

If the user says "just research it" — skip ahead with reasonable defaults.

Step 2: Plan the Research (think before searching)

Break the topic into 3-5 research sub-questions. For example:

  • Topic: "Impact of AI on healthcare"
    • What are the main AI applications in healthcare today?
    • What clinical outcomes have been measured?
    • What are the regulatory challenges?
    • What companies are leading this space?
    • What's the market size and growth trajectory?

Step 3: Execute Multi-Source Search

Use MCP search tools to query:

# Using zai-mcp-server web_search_prime
mcporter call web-search-prime.web_search_prime search_query:"\x3Csub-question>"

# Using minimax web_search
mcporter call MiniMax.web_search query:"\x3Csub-question>"

Search strategy:

  • Use 2-3 different keyword variations per sub-question
  • Aim for 15-30 unique sources total
  • Prioritize: academic, official, reputable news > blogs > forums

Step 4: Deep-Read Key Sources

For the most promising URLs, fetch full content:

curl -sL "\x3Curl>" | python3 -c "
import sys, re
html = sys.stdin.read()
# Strip tags, get text
text = re.sub('\x3C[^>]+>', ' ', html)
text = re.sub(r'\s+', ' ', text).strip()
print(text[:5000])
"

Read 3-5 key sources in full for depth. Don't just rely on search snippets.

Step 5: Synthesize & Write Report

Structure the report as:

# [Topic]: Deep Research Report
*Generated: [date] | Sources: [N] | Confidence: [High/Medium/Low]*

## Executive Summary
[3-5 sentence overview of key findings]

## 1. [First Major Theme]
[Findings with inline citations]
- Key point ([Source Name](url))
- Supporting data ([Source Name](url))

## 2. [Second Major Theme]
...

## 3. [Third Major Theme]
...

## Key Takeaways
- [Actionable insight 1]
- [Actionable insight 2]
- [Actionable insight 3]

## Sources
1. [Title](url) — [one-line summary]
2. ...

## Methodology
Searched [N] queries across web and news. Analyzed [M] sources.
Sub-questions investigated: [list]

Step 6: Save & Deliver

Save report to the current agent's working directory (auto-resolves to actual runtime path):

mkdir -p research/[slug]
# Write report to research/[slug]/report.md

Then deliver:

  • Short topics: Post the full report in chat
  • Long reports: Post the executive summary + key takeaways, offer full report as file

Quality Rules

  1. Every claim needs a source. No unsourced assertions.
  2. Cross-reference. If only one source says it, flag it as unverified.
  3. Recency matters. Prefer sources from the last 12 months.
  4. Acknowledge gaps. If you couldn't find good info on a sub-question, say so.
  5. No hallucination. If you don't know, say "insufficient data found."

Examples

"Research the current state of nuclear fusion energy"
"Deep dive into Rust vs Go for backend services in 2026"
"Research the best strategies for bootstrapping a SaaS business"
"What's happening with the US housing market right now?"

For Sub-Agent Usage

When spawning as a sub-agent, include the full research request and context:

sessions_spawn(
  task: "Run deep research on [TOPIC]. Follow the deep-research-with-mcp SKILL.md workflow.
  Goal: [user's goal]
  Specific angles: [any specifics]
  Save report to research/[slug]/report.md (relative to agent's working directory)
  When done, wake the main session with key findings.",
  label: "research-[slug]",
  model: "opus"
)

Requirements

  • MCP Search Tool (one of the following):
    • Minimax MCP server with web_search tool (recommended)
    • zai-mcp-server with web_search_prime tool
  • curl (for fetching full pages)
  • Configure MCP in your OpenClaw config before using this skill
安全使用建议
This skill appears to do what it says: use MCP search tools, fetch pages, and write a report. Before installing, verify you have (or are willing to configure) a trusted MCP server (minimax or zai web-search-prime) and that the mcporter binary is present. Note the SKILL.md lists required binaries (mcporter, curl, python3) even though registry metadata omitted them — ensure those binaries exist. Be aware that the workflow fetches many external pages (could include PII or copyrighted material), will write reports into the agent workspace, and can spawn sub-agents to run autonomously; if you have privacy or network policies, limit the number of sources or run in a sandbox. Finally, confirm the MCP servers you configure are trustworthy (they process your search queries and results) and consider reviewing or restricting sub-agent behavior if you need tighter controls.
功能分析
Type: OpenClaw Skill Name: deep-research-with-mcp Version: 1.1.1 The skill provides a structured workflow for deep research using MCP search tools and standard command-line utilities. It uses `mcporter` for search queries and a combination of `curl` and a Python one-liner to extract text from web pages for synthesis into a report. No indicators of data exfiltration, malicious execution, or harmful prompt injection were found; the logic is consistent with the stated purpose of research and report generation.
能力评估
Purpose & Capability
The skill's stated purpose (deep multi-source research via MCP) aligns with the actions in SKILL.md (mcporter calls, curl fetches, Python text extraction, save report). Small inconsistencies: the registry metadata lists no required binaries, while SKILL.md metadata lists required bins [mcporter, curl, python3]. Also mcp_requirements marks both search tools as required=true even though the prose and README say 'at least one MCP search tool' must be configured.
Instruction Scope
Instructions are narrowly scoped to: check mcporter, call MCP search tools, fetch pages with curl, strip HTML with a Python one-liner, synthesize and save a Markdown report, and optionally spawn a sub-agent. These steps are expected for the described research task. Notes of caution: the HTML-stripping Python snippet is a simple regex (naive text extraction), the workflow can fetch many external URLs (15–30) which may include PII or copyrighted content, and the sub-agent spawn instruction allows autonomous sub-tasks (expected for agent workflows but increases blast radius).
Install Mechanism
Instruction-only skill with no install spec or code files — lowest install risk. It relies on existing binaries (mcporter, curl, python3) rather than downloading/executing external installers.
Credentials
No environment variables or credentials are requested by the skill. The only external dependency is configuration of MCP search tools (the MCP servers themselves), which is coherent with the skill's purpose. You should still verify that your configured MCP servers are trusted and not proxying or logging searches to untrusted endpoints.
Persistence & Privilege
Skill is not always-enabled and does not request special system-wide privileges. It writes reports to the agent's working directory (expected behavior). The instructions include spawning sub-agents (normal for agent workflows) but autonomous invocation is the platform default and not a standalone red flag.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install deep-research-with-mcp
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /deep-research-with-mcp 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.1
- Fixed priority order of required search tools, making MiniMax.web_search the primary MCP search tool. - Updated metadata section to explicitly list binary requirements ("mcporter", "curl", "python3"). - Clarified server and tool names throughout documentation for consistency. - No changes to core workflow or functionality.
v1.1.0
- Added comprehensive documentation outlining deep research workflow using MCP search tools. - Supports both web-search-prime.web_search_prime (primary) and MiniMax.web_search (alternative); at least one is required. - Details step-by-step process: clarifying user goals, planning research, executing multi-source searches, deep-reading sources, synthesizing reports, and delivering results. - Emphasizes quality standards: source attribution, cross-referencing, recency, transparency about gaps, and no unsupported claims. - Provides examples and instructions for both direct and sub-agent usage, with clear saving and reporting guidelines.
元数据
Slug deep-research-with-mcp
版本 1.1.1
许可证 MIT-0
累计安装 3
当前安装数 3
历史版本数 2
常见问题

Deep Research with MCP 是什么?

Multi-source deep research agent using MCP search tools (minimax web_search or zai-mcp-server web_search_prime). 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 329 次。

如何安装 Deep Research with MCP?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install deep-research-with-mcp」即可一键安装,无需额外配置。

Deep Research with MCP 是免费的吗?

是的,Deep Research with MCP 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Deep Research with MCP 支持哪些平台?

Deep Research with MCP 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Deep Research with MCP?

由 wanghan0501(@wanghan0501)开发并维护,当前版本 v1.1.1。

💬 留言讨论