← 返回
AI智能 中文

Deep Research with MCP

Multi-source deep research agent using MCP search tools (minimax web_search or zai-mcp-server web_search_prime).
使用MCP搜索工具(minimax web_search或zai-mcp-server web_search_prime)的多源深度研究智能体。
wanghan0501
AI智能 clawhub v1.1.1 1 版本 99840 Key: 无需
★ 0
Stars
📥 624
下载
💾 55
安装
1
版本
#latest

概述

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
  1. 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

```bash

mcporter call MiniMax.web_search query:"keyword"

```

  1. web-search-prime.web_search_prime

```bash

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:"<sub-question>"

# Using minimax web_search
mcporter call MiniMax.web_search query:"<sub-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 "<url>" | python3 -c "
import sys, re
html = sys.stdin.read()
# Strip tags, get text
text = re.sub('<[^>]+>', ' ', 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

版本历史

共 1 个版本

  • v1.1.1 当前
    2026-03-29 17:55 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-intelligence

Proactive Agent

halthelobster
将AI智能体从任务执行者升级为主动预判需求、持续优化的智能伙伴。集成WAL协议、工作缓冲区、自主定时任务及实战验证模式。Hal Stack核心组件 🦞
★ 836 📥 213,131
ai-intelligence

ontology

oswalpalash
类型化知识图谱,用于结构化智能体记忆与可组合技能。支持创建/查询实体(人员、项目、任务、事件、文档)及关联...
★ 712 📥 243,827
developer-tools

Self-Improving with Reflection

wanghan0501
自我反思、自我批评、自主学习与自组织记忆。智能体能评估自身工作、发现错误并实现永久性改进。
★ 0 📥 1,437