Changelog¶
The canonical changelog lives at CHANGELOG.md in the repo root and follows Keep a Changelog + Semantic Versioning.
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Unreleased¶
Added¶
- Documentation site (MkDocs Material) published at https://datvietvac-techhub.github.io/mcp-web-tools/.
llms.txtandllms-full.txtat repo root for LLM ingestion (llmstxt.org).CONTRIBUTING.md,CODE_OF_CONDUCT.md,CHANGELOG.md(this file), GitHub issue & PR templates.- JSON-LD
SoftwareApplicationschema on the docs landing page, includingalternateNameentries for the previous project names. - "Why self-host MCP Web Tools?" section in README leading with the cost/privacy/control angle vs paid SaaS search APIs.
Changed¶
- Renamed repository to
mcp-web-tools(fromagent-web-tool-mcp). GitHub redirects old URLs, so existing clones, links, and badge sources keep working. - Project display name updated from "Agent Web Tool MCP" to MCP Web Tools. JSON-LD
alternateNameretains both legacy names ("Agent Web Tool MCP", "agent-web-tool-mcp") for backlink continuity. - README and docs rewritten to lead with the self-host purpose: developers serve
web_searchandweb_extractorto their AI agents locally instead of paying per-query for Brave Search API, Tavily, Serper, or Bing. - README and docs rewritten for SEO + LLM citation friendliness: keyword-rich H1, TL;DR block, Q-style H2s, and a comparison table vs Brave Search MCP / Tavily MCP. Deep reference content moved to the docs site.
SECURITY.mdreplaced placeholder template with real policy (reporting via GitHub Security Advisories).install.shREPO_URLand help text updated to the new repo slug; default install dir, container names, and compose project name remain unchanged for deployment compatibility.
Notes¶
- Internal Docker service (
web-mcp), container (web-tool-{valkey,searxng,crawl4ai,mcp}), network (web-tool-net), volume (valkey-data), FastMCP server name (web-tool), SearXNGinstance_name, default install dir (~/.local/share/mcp-web-tool), and User-Agent string retain the project's previous slug to preserve deployment compatibility for existing installs. They will be unified to themcp-web-tools-*prefix in a future major release.
1.0.0 - 2026-05¶
Initial public release.
Added¶
web_searchMCP tool — queries a self-hosted SearXNG metasearch instance, returns ranked & de-duplicated results, supportscategories,language,time_rangefilters, clamps to 1–50 results.web_extractorMCP tool — fetches one or more URLs via Crawl4AI (headless Chromium) and returns clean Markdown. Supportsfit/raw/bm25/llmmodes, parallel fetching up toMAX_CONCURRENCY, max 20 URLs per call.- FastMCP-based server with Streamable HTTP and stdio transports (
MCP_TRANSPORT=http|stdio). - 4-service Docker Compose stack —
web-mcp+searxng+crawl4ai+valkeyon a single bridge network (web-tool-net). - Valkey-backed cache + rate-limiter for SearXNG; in-process TTL cache in the MCP layer (
MCP_CACHE_TTL,EXTRACT_CACHE_TTL). install.shone-liner installer with curl-pipe + manual-clone modes, prerequisite checks,.envbootstrap, automaticSEARXNG_SECRETgeneration. Idempotent and safe to re-run.- FastAPI dev playground (
make playground) sharing the same tool implementations as the MCP server, with Swagger UI at/docs. - Makefile convenience targets:
bootstrap,install,up,down,restart,ps,logs,build,pull,smoke,secret,playground,clean. - Pinnable upstream images via
VALKEY_IMAGE,SEARXNG_IMAGE,CRAWL4AI_IMAGEfor reproducible deploys.