Skip to main content
Glama
dr34dl10n

local-websearch-mcp

by dr34dl10n

local-websearch-mcp

Small Python MCP server that provides two tools:

  • web_search: search the public web through DuckDuckGo HTML results

  • web_fetch: fetch a page and extract readable text

No API key is required.

Requirements

  • Linux server or workstation

  • Python 3.10+

  • Outbound internet access for:

    • pip install

    • web searches and page fetches at runtime

Related MCP server: mcp-ddg-research

Quick install

git clone <this-repo-url> local-websearch-mcp
cd local-websearch-mcp
chmod +x install.sh
./install.sh

That creates .venv/, installs the package, and runs a built-in health check.

Manual install

python3 -m venv .venv
. .venv/bin/activate
pip install --upgrade pip
pip install .
local-websearch-mcp --self-test

Run

.venv/bin/local-websearch-mcp

Or:

python -m local_websearch_mcp.server

MCP client config

Use the installed executable directly:

{
  "mcpServers": {
    "local-websearch": {
      "command": "/absolute/path/to/local-websearch-mcp/.venv/bin/local-websearch-mcp"
    }
  }
}

Health check

.venv/bin/local-websearch-mcp --self-test

Expected output:

{
  "server": "local-websearch",
  "status": "ok",
  "tools": ["web_search", "web_fetch"]
}

Tools

  • web_search(query: str, max_results: int = 5)

  • web_fetch(url: str, max_chars: int = 12000)

Local demo

python examples/simple_client.py

Repo contents

  • src/local_websearch_mcp/: MCP server and helpers

  • examples/: local demo client

  • install.sh: one-command local install

Notes

  • DuckDuckGo HTML markup can change, so selectors may need maintenance.

  • This server uses direct HTTP requests. Respect site terms and robots policies.

A
license - permissive license
-
quality - not tested
D
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.

Related MCP Servers

  • F
    license
    -
    quality
    D
    maintenance
    A lightweight MCP server that enables LLMs to search the web via DuckDuckGo, search GitHub code repositories, and extract clean content from web pages in LLM-friendly formats.
    Last updated
    8
  • F
    license
    A
    quality
    D
    maintenance
    A simple MCP server that provides web search functionality via DuckDuckGo, returning titles, URLs, and descriptions for results. Configurable result limit.
    Last updated
    1
  • F
    license
    -
    quality
    D
    maintenance
    MCP server that provides web search scraping from DuckDuckGo (with Mojeek fallback) and URL content fetching as markdown/text or raw HTML.
    Last updated
    1

View all related MCP servers

Related MCP Connectors

  • Serper MCP — wraps the Serper Google Search API (serper.dev)

  • MCP server for Google search results via SERP API

  • An MCP server that gives your AI access to the source code and docs of all public github repos

View all MCP Connectors

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

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