Morph Websearch
БесплатноНе проверенEnables web search, page fetching, and AI-powered research via DuckDuckGo, with context compaction and agent reasoning using morphllm.
Описание
Enables web search, page fetching, and AI-powered research via DuckDuckGo, with context compaction and agent reasoning using morphllm.
README
Web search, page fetching, and AI-powered research for MCP-compatible clients.
morph-websearch-mcp searches DuckDuckGo, fetches pages with crawl4ai, and compacts noisy webpage content with Morph. By default, results are AI-enriched into a synthesized answer with cited sources. Set enrich=false to get raw page content instead.
Features
| Tool | Description |
|---|---|
websearch |
Searches DuckDuckGo, fetches result pages, and returns AI-enriched answers with sources by default. Pass enrich=false for raw results. |
webfetch |
Fetches one URL and returns compacted markdown. |
Works without a Morph API key — falls back to uncompacted scraping with a warning. Set the key to enable AI compaction and enrichment.
Requirements
- Python 3.13 or newer
- (Optional) A Morph API key from morphllm.com/dashboard/api-keys for compaction and AI enrichment
- An MCP-compatible client, such as OpenCode, Claude Desktop, Cursor, or another client that can launch local MCP servers
Install
For most MCP clients, install the server as a standalone command:
pipx install morph-websearch-mcp
If you prefer installing into the current Python environment:
pip install morph-websearch-mcp
For local development from an existing checkout:
cd morph-websearch-mcp
uv sync
Configure Your API Key
Set MORPH_API_KEY in the environment used by your MCP client:
export MORPH_API_KEY="sk-..."
If your client is launched from a desktop app, make sure the desktop app can see that environment variable. When in doubt, put the key directly in the client MCP config instead of relying on your shell startup files.
OpenCode Setup
Add the server to your OpenCode config:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"websearch": {
"type": "local",
"command": ["websearch-mcp"],
"environment": {
"MORPH_API_KEY": "{env:MORPH_API_KEY}"
},
"enabled": true
}
}
}
Verify OpenCode can see the server:
opencode mcp list
You should see websearch listed as connected.
Generic MCP Client Setup
For clients that use the common mcpServers shape:
{
"mcpServers": {
"websearch": {
"command": "websearch-mcp",
"env": {
"MORPH_API_KEY": "sk-..."
}
}
}
}
Some clients expect command and args separately. This server does not need arguments, so only the command is required.
Local Development Setup
Install dependencies:
uv sync
Run the MCP server from the local checkout:
uv run websearch-mcp
Use this local command in an MCP client while developing:
{
"mcpServers": {
"websearch": {
"command": "uv",
"args": ["run", "websearch-mcp"],
"env": {
"MORPH_API_KEY": "sk-..."
}
}
}
}
Tool Inputs
websearch
Searches the web. By default returns an AI-enriched answer with sources. Pass enrich=false for raw page content.
{
"query": "latest Python 3.13 release notes",
"num_results": 5,
"enrich": true
}
webfetch
Fetches one page and returns compacted markdown.
{
"url": "https://example.com"
}
How It Works
query -> DuckDuckGo HTML -> crawl4ai fetch -> Morph compact -> enriched answer (default)
|
v
raw results + hint (enrich=false)
websearch fetches each result page and compacts its content via Morph. With enrich=true (default), the compacted results are fed to a Morph-powered agent that searches further if needed and synthesizes a final answer with cited sources. With enrich=false, raw compacted results are returned with a hint suggesting enrichment or manual webfetch calls.
When MORPH_API_KEY is not set, the server runs in no-AI mode — content is returned uncompacted with a warning, and enrichment falls back to raw results.
Troubleshooting
If the command is not found, confirm your install location is on PATH:
command -v websearch-mcp
If OpenCode cannot connect, check the configured server status:
opencode mcp list
If requests fail or return uncompressed content, confirm the API key is visible to the server process:
echo "$MORPH_API_KEY"
If browser-based crawling fails on a new machine, reinstall the package and make sure crawl4ai's browser dependencies are available in that environment.
Services Used
| Service | Purpose | Docs |
|---|---|---|
| crawl4ai | Headless crawling and HTML-to-markdown extraction | docs.crawl4ai.com |
| Morph compact | Context compaction for fetched web content | docs.morphllm.com/sdk/components/compact |
| Morph fast models | Agent reasoning for enriched websearch | docs.morphllm.com/sdk/components/fast-models |
License
MIT
Установка Morph Websearch
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/sabari245/websearch-mcpFAQ
Morph Websearch MCP бесплатный?
Да, Morph Websearch MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Morph Websearch?
Нет, Morph Websearch работает без API-ключей и переменных окружения.
Morph Websearch — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить Morph Websearch в Claude Desktop, Claude Code или Cursor?
Открой Morph Websearch на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Morph Websearch with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
