shensou
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@shensouwhat is the controversy around CRISPR base editing off-target effects?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
深搜 · shensou
Divergent iterative web search. Anchor on one question; an explorer LLM keeps proposing keyword queries, reads what the web returns, distills it into findings, and then branches the next round toward the facets it hasn't understood yet — with an adversarial slice that deliberately hunts counter-evidence. Low-yield queries are triaged into genuine knowledge gaps vs. bad phrasing. It ends with a question-map (distinct branches + next steps) and a big-picture synthesis.
Not "one query → ten links." It's a loop that opens a question — novelty-deduped so it keeps reaching for new angles instead of re-searching what it already knows.
Provider-agnostic: the explorer is any OpenAI-compatible model; search is the Brave Search API. Ships as an MCP tool, a web demo, and a CLI.

Illustrative example — rounds of queries (extend + counter), findings, blind spots, and the final question-map.
How the loop works
question
│ explorer LLM seeds N keyword queries (extend + counter)
▼
┌── search each (Brave) ──► evidence
│ │
│ ▼ explorer digests → findings (facets on the question)
│ ▼ proposes next round's queries — cover what's NOT yet understood
│ novelty filter (Jaccard) drops anything too close to past queries
└───◄ loop until budget / saturation / max rounds
│
├─ triage low-yield queries → knowledge gaps vs typos
├─ curate → question-map { direct, overview, branches[next/premise/cost], more }
└─ synthesize → big-picture narrativeKey behaviours: anchored (every query serves the main question, no drift), adversarial (each round seeks reasons it's wrong), coverage-driven (branches toward gaps), novelty-deduped (won't spin on near-duplicate searches).
Related MCP server: MiniMax Search MCP Server
Quick start
git clone https://github.com/taoyongac/shensou
cd shensou
pip install -r requirements.txt
cp .env.example .env # set EXPLORER_MODEL/API_KEY + BRAVE_API_KEYCLI
set -a; source .env; set +a
python -m shensou "CRISPR base editor off-target 2025 controversy"
python -m shensou -b 32 "your question" # bigger search budget
python -m shensou --json "your question" > record.jsonWeb demo
set -a; source .env; set +a
python web/server.py # → http://127.0.0.1:8040MCP server — add to your host config (e.g. Claude Code ~/.claude.json), with
the EXPLORER_* + BRAVE_API_KEY vars in its environment:
{
"mcpServers": {
"shensou": {
"command": "python",
"args": ["/abs/path/to/shensou/mcp_server/server.py"],
"env": { "EXPLORER_MODEL": "gpt-4o", "EXPLORER_API_KEY": "sk-...",
"BRAVE_API_KEY": "..." }
}
}
}Then call deep_search(question, budget) — it runs the full loop and returns a
structured record (findings, blind spots, map, synthesis). It makes many sequential
LLM + search calls, so a run takes minutes; size it with budget (4–96).
Configuration
All via environment (see .env.example).
var | meaning | default |
| explorer model id (required) |
|
| OpenAI-compatible endpoint |
|
| Brave Search key(s) | — |
| default searches per run | 24 |
| queries per round / late-game | 5 / 2 |
| round cap | 12 |
| novelty threshold (0–1) | 0.30 |
| include counter-evidence queries | 1 |
| Brave search locale | en / US |
The web demo also reads SHENSOU_HOST/PORT and optional SHENSOU_USER/PASS
(HTTP Basic Auth). A global lock serializes web runs (concurrency = 1) so a shared
demo never piles up parallel searches.
Notes
Get a Brave Search API key at https://brave.com/search/api/ (free tier exists).
Multiple
BRAVE_API_KEYSare rotated on rate-limit; calls are serialized to respect the ~1 req/s free-tier cap. No usage state is written to disk.The search provider is the one swappable piece —
shensou/search.pyis a small typed module; drop in another engine behind the samesearch(q, count)contract.
From the Tao Lab
Built and used at Tao Lab, School of Life Sciences, Yunnan University (云南大学 · 陶勇课题组) — epigenetics, aging, cancer, and AI-for-Science. 深搜 is the lab's tool for turning a fuzzy question into a mapped, evidence-anchored understanding — and its sibling 三人行 / sanrenxing opens the same question divergently across three AI seats.
🔗 Lab site: https://taolab.tail0ea5ac.ts.net/
License
MIT © 2026 Yong Tao (Tao Lab, Yunnan University). See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/taoyongac/shensou'
If you have feedback or need assistance with the MCP directory API, please join our Discord server