Skip to main content
Glama
sabari245

morph-websearch-mcp

by sabari245

morph-websearch-mcp

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.

Related MCP server: DuckDuckGo MCP Server

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

A
license - permissive license
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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/sabari245/websearch-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server