web-research-mcp
A version-aware cache for web research that stores and serves documentation references, preventing models from re-researching the same topics across sessions.
README
web-research-mcp
An MCP server that keeps a persistent, version-aware cache of web research so the host model (Claude, Codex, …) writes modern, non-deprecated code without re-researching the same docs every session.
The server never browses the web itself — the host does the searching when the user asks. This server only stores what was found, answers "do we already have this? is it current?" cheaply, and serves the cached reference back.
Install
One line — no clone needed:
curl -LsSf https://raw.githubusercontent.com/jcsoftdev/web-research-mcp/main/install.sh | bash
Or from a checkout:
./install.sh
Interactive: installs uv if missing, installs the web-research-mcp binary, then
asks which hosts to register into (Claude Code, Codex, Gemini, Claude Desktop,
Cursor) and wires each one up. The DB autocreates on first use.
Manual registration
# Claude Code
claude mcp add web-research -s user -- web-research-mcp
# Codex
codex mcp add web-research -- web-research-mcp
Other hosts (JSON config):
{
"mcpServers": {
"web-research": { "command": "web-research-mcp", "args": [] }
}
}
Tools
| Tool | Cost | Behavior |
|---|---|---|
list_tree(tech?) |
minimal | Hierarchy tech → version → topics (names + is_latest/stale flags, no content). |
check_reference(tech, topic, version?) |
low | {status_tag, stale, exists, slug, is_latest, resolved_version}. No content. Omit version → latest. |
get_reference(slug, section?) |
med-high | Full markdown doc; optional section returns one heading block. |
search_reference(query, tech?) |
med | FTS5 over topic + summary + content + tags. |
save_research(...) |
write | Stores a doc; atomically supersedes older versions (PEP 440 compare). |
invalidate_reference(slug) |
write | Forces a reference stale. |
Freshness is a structured field (status_tag, stale) placed first in every
response, and a stale entry carries an explicit advice field — the model can't
overlook deprecation buried in prose. A cache miss is a flat {"exists": false}.
Dedup gate
save_research guards against forking the same concept under different topic
names (server-components vs servercomponents). Before inserting it looks for
similar existing topics for that tech and, if any, returns them in a
possible_duplicates field so the host reuses an existing slug instead of
creating a duplicate. It is advisory, non-blocking. Matching is lexical today
(near-spellings, spacing, truncated abbreviations); synonyms and non-truncation
abbreviations (rsc vs server-components) need embeddings, which swap in at the
same call site via EmbeddingProvider when EMBEDDINGS_ENABLED=1.
Enforcement hook (optional)
The MCP instructions only ask the model to call check_reference before
writing code — nothing enforces it. The installer can wire a host pre-edit
hook that turns the ask into a guarantee: if you are about to edit code for a
cached tech and the current session never consulted its reference, the edit is
denied until you do.
web-research-mcp hook --host {claude|codex|gemini|cursor}
The hook reads the host's pre-edit event on stdin, detects tracked techs in the
edit via strong signals only (real JS/TS imports or package.json dependency
keys — never prose), and checks the session transcript for a prior
check_reference / get_reference call. Detection is conservative by design: a
false deny blocks a legitimate edit.
Install is opt-in (default no) because a deny is disruptive. Support:
| host | event | status |
|---|---|---|
| Claude Code | PreToolUse matcher Edit|Write, deny via exit 2 |
verified |
| Codex | PreToolUse (Bash-scoped — misses apply_patch edits) |
experimental |
| Gemini CLI | BeforeTool |
experimental (schema unverified) |
| Cursor | beforeShellExecution + beforeMCPExecution (no pre-edit block) |
experimental |
The hook fails open: any parse error, unknown host, or unreadable DB allows the edit — a bug in the gate must never wedge your editor.
Config (env vars)
| var | default | purpose |
|---|---|---|
WEB_RESEARCH_DB_PATH |
~/.web-research-mcp/research.db |
DB location (global — reused across projects) |
DEFAULT_TTL_DAYS |
30 |
TTL for non-version-locked entries |
EMBEDDINGS_ENABLED |
0 |
vector search (post-MVP) |
WEB_RESEARCH_AUTO_UPDATE |
1 |
advertise updates so the host auto-delegates them; set 0 to disable |
Auto-update
The server never installs anything itself. It exposes a check_for_update tool
and, via its MCP instructions, asks the host to delegate a background agent to
run the update when a newer version exists on GitHub — so the update never blocks
you and takes effect on the next launch. The host does the work; the server only
detects and advises.
With WEB_RESEARCH_AUTO_UPDATE=0 the tool still exists but the instructions no
longer ask the host to auto-delegate — call check_for_update yourself when you
want it.
Develop
uv sync
uv run pytest
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.