Source-grounded web research: search, extraction, verification, and browser automation.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Footnote MCP.
web_searchConfigured providers plus zero-key Bing, DuckDuckGo, Brave, and Wiby; Marginalia is explicit-only. Snippets are discovery only.
web_search_recentSearch restricted to a recency window (day/week/month/year).
web_deep_searchIteratively close evidence gaps across web/papers/encyclopedia/GitHub/archive sources; extracts tables/files, verifies individual facts, and returns an evidence ledger plus diagnostic funnel.
web_readFetch one URL, extract text, classify source quality, persist cache metadata.
papers_searchSearch Crossref and arXiv through one normalized, zero-key paper contract.
encyclopedia_searchSearch Wikipedia/Wikidata entities or run read-only Wikidata SPARQL.
Search, extract data, and verify every claim against the source page.
Unlike search APIs (Tavily, Exa) or scrapers (Firecrawl) that return raw text or markdown, footnote-mcp is built for verification: every claim is checked against the raw source text with sentence-level citations and character offsets, with zero required API keys.
Add to Cursor Β· Claude Desktop setup
Runs without API keys Β· 45 tools Β· MIT licensed
footnote-mcp speaks MCP over stdio. Point a client at it β Claude Desktop's
claude_desktop_config.json, or Cursor's ~/.cursor/mcp.json:
No API keys are needed to start. Restart the client and ask it to run startup_health_check:
it reports, one line each, whether the extractors, the PDF and spreadsheet parsers, the
browser, OCR and the cache directory are usable on this machine β so a missing optional piece
shows up now rather than halfway through a research task.
Ask the assistant to look something up and web_search queries the zero-key providers β Bing,
DuckDuckGo, Brave, Wiby β alongside any keyed provider you configured, then deduplicates and
merges them into one ranking.
Every result carries the engines that returned it, so a page two independent indexes agree on is distinguishable from one only a single engine found, and a relevance score. Snippets count as discovery only: nothing at this stage is evidence yet, which is what the next two sections are for.
Provider routing, keys, and semantic reranking: docs/search-backends.md.
web_extract_tables turns a page's HTML tables into named columns and rows, each set tagged
with the URL it came from and with the true total, so a truncated answer says so instead of
looking complete. Point it at a Wikipedia revenue table and you get Rank, Name,
Industry, Revenue, Employees as fields you can sort and compare, not a wall of text to
re-read.
Data a page links rather than renders is covered too: web_detect_downloads finds the
CSV/TSV/XLS/XLSX/PDF/JSON attached to it, web_parse_file parses them, and web_fetch_json
takes an API endpoint directly.
The part a plain search tool does not do. evidence_entailment compares a claim to the source
text and returns a verdict; corroborate_claim triangulates across excerpts, and
locate_claim_span returns the supporting sentence with character offsets.
Given the claim "Norway's battery-electric share of new passenger cars was 82.4% in 2023" and a source reading "In 2023, battery-electric vehicles accounted for 82.4% of all new passenger cars registered in Norway", the verdict comes back as a value your agent can act on rather than a paragraph it has to interpret:
The default backend is deterministic and offline, and it never quietly hands the decision to
another model: where it is not confident it returns needs_review with the spans it matched,
for you β or the assistant that called it, which already has both texts β to read. A local
LLM judge (backend="ollama") and a local NLI model (backend="local_nli") are there when you
want them. Measured accuracy of the deterministic path, which is the default:
benchmarks/REPORT.md.
Search snippets are discovery, never evidence. Discovery merges several independent indexes;
fetching escalates through a ladder β plain HTTP, optional proxy, headless Chromium, optional
hosted scrape API β and stops at the cheapest tier returning real content. Extraction pulls
text, tables, and linked files, each cached with its source URL. Only then does verification
run, checking the claim against the fetched text before it counts. web_deep_search wraps the
whole loop: it decomposes requirements, re-searches unresolved gaps, and returns an evidence
ledger with a funnel showing where candidates were lost.
web_search β Multi-engine search across zero-key providers (Bing, DuckDuckGo, Brave, Wiby) and optional metered APIsweb_search_recent β Search restricted to a recency window (day, week, month, year)web_deep_search β Iterative multi-step research loop with evidence ledger and funnel diagnosticspapers_search β Academic paper search via Crossref and arXivencyclopedia_search β Wikipedia and Wikidata entity lookup plus read-only SPARQLgithub_search β Search public repositories, code, issues, and commitsarchive_search β Historical snapshots via Wayback Machine and Common Crawlgenerate_search_queries β Generate targeted operator queries (site:, filetype:csv)web_read β Fetch URL, extract text, evaluate source quality, and cache snapshotweb_fetch_authenticated β Fetch pages requiring custom cookies or session headersweb_archive_fetch β Retrieve the nearest Wayback Machine snapshot for dead or changed URLsweb_crawl β Breadth-first crawl following links from a starting URLweb_extract_tables β Parse HTML tables into typed columns and rows with source URLsweb_detect_downloads β Discover linked data files (CSV, TSV, XLS, XLSX, PDF, JSON, XML)web_parse_file β Download and parse tabular data and PDF documentsweb_fetch_json β Fetch direct REST API endpoints into parsed JSONcheck_date_completeness β Validate time series date continuity across calendar and market schedulesresolve_units β Normalize currencies, units, and currency pairsvalidate_unit_rows β Detect and reject rows with conflicting units or currenciesreconcile_time_series β Align series by key, compute deltas, and flag missing entries or outliersexport_dataset β Save consolidated rows to CSV, XLSX, or JSON filestool_spec_propose β Propose task-specific extraction recipe specificationstool_code_generate β Generate starter Python extraction recipestool_code_validate β Validate recipe code against an AST safety allowlisttool_code_run_sandboxed β Execute extraction code inside a restricted subprocesstool_promote β Persist validated recipes to local memoryrecipe_registry β List, inspect, run, and delete registered extraction recipesevidence_entailment β Evaluate whether source text entails a claim (heuristic, Ollama, or NLI)corroborate_claim β Triangulate claim consensus or conflict across multiple excerptslocate_claim_span β Locate supporting sentences with character offsets and containment scoresclassify_source β Classify domains (official, aggregator, blog, forum, interactive, blocked)source_cache_get β Retrieve cached page snapshots and provenance metadatasource_cache_put β Store page contents and metadata into persistent cachebuild_research_debug_report β Compact diagnostic report of queries, sources, and verification gapsstartup_health_check β Inspect availability of parsers, browser runtime, OCR, and cache directoriesweb_navigate β Open URL in Chromium session (headless or --headed)web_snapshot β Inspect interactive DOM accessibility tree with stable element referencesweb_click β Click interactive page elements by reference ID or CSS selectorweb_type β Enter text into form fields and input elementsweb_scroll β Scroll viewports or containers to reveal dynamic contentweb_extract β Extract targeted HTML elements or attributesweb_screenshot β Capture page screenshots with optional Tesseract OCRbrowser_set_date_range β Manipulate dynamic web date-picker controlsbrowser_extract_tables β Extract client-side rendered tables after DOM hydrationbrowser_extract_tables_for_date_range β Automate date selection and table extraction cyclesFull parameters and schemas: docs/tools.md.
python -m playwright install chromium, for the browser tier and browser toolssemantic: true: an Ollama daemon, or requirements-embed.txt to run the same bge-m3 weights in-process β the only option where no daemon exists, such as Dockertesseract binary for OCR in web_screenshot and scanned PDFsFactual signals from GitHub, npm, and our automated checks β not a rating.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/footnote-mcp)<a href="https://allmcps.com/mcp/footnote-mcp"><img src="https://allmcps.com/api/badge/footnote-mcp?style=directory" alt="Footnote MCP on AllMCPs" /></a>