Skip to main content
Glama

beacon

A zero-config web search MCP server for any MCP client (opencode, Claude Desktop, Cursor, etc.).

Gives your local models the ability to search the web and read page content — no API keys, no Docker, no setup beyond pip install.

What it gives you

Two MCP tools:

Tool

Description

beacon_search(query, max_results=5)

Web search via DuckDuckGo. Returns {title, url, snippet} hits.

beacon_fetch(url, max_chars=8000)

Fetches a URL and returns its main readable text (HTML-stripped, boilerplate removed).

Related MCP server: mcp-ddg-research

Install

git clone <your-fork-url> beacon
cd beacon
python3 -m venv .venv
.venv/bin/pip install -e .

Register with an MCP client

opencode

Add to your opencode.json:

{
  "mcp": {
    "beacon": {
      "type": "local",
      "command": ["/absolute/path/to/beacon/.venv/bin/beacon-mcp"]
    }
  }
}

Claude Desktop

Add to claude_desktop_config.json:

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

Manual testing (CLI)

.venv/bin/beacon search "python async patterns"
.venv/bin/beacon fetch https://example.org

Configuration (optional, via env vars)

Variable

Default

Purpose

BEACON_TIMEOUT

15

HTTP timeout (seconds) for fetch

BEACON_USER_AGENT

Firefox-like string

User-Agent for outbound requests

BEACON_LOG_LEVEL

INFO

Logging verbosity

No state is written to disk. No database. No API keys required.

Development

.venv/bin/pip install -e ".[dev]"
.venv/bin/python -m pytest -v

License

MIT.

Install Server
A
license - permissive license
A
quality
C
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

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

  • Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.

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/mason99-stack/beacon-mcp'

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