Footnote MCP Server

footnote-mcp PyPI v0.2.6

Published by kazkozdev — no publish provenance, so origin is unverified, but the source is public: the repository link below is self-declared yet readable, so you can inspect the code before adopting it.

MCP server for source-grounded web research: search, structured-data extraction, evidence verification, and browser automation.

Trust grade
A
93/100
Last scanned get badge →
Trust
A · 93/100
Adoption risk for you: the threat score, then adjusted down for blast radius, publisher verification and how much the scan could see. Deterministic; every point is auditable.
Capability
High
Blast radius if it went rogue — what the server’s tools could reach. Independent of trust.
Coverage
Source
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
Share this Trust Score
𝕏 Share LinkedIn Reddit
A Why this grade threat 100 − adoption risk = 93/100

The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.

1. Threat score — 100 − 0 = 100. What the published surface and source actually contain:

The deterministic scan raised no scored threat in the surface it inspected — the threat score stayed at 100. Capability observations and advisory notes are recorded but never lower it.

2. Client adoption risk — 100 − 7 = 93. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:

PointsAdoption-risk factor
−6 capability blast radius (high) — client exposure if the model is manipulated
−1 publisher verification (public source) — no provenance, but the source is public and inspectable

Capability observations and info notes are shown under Findings but never scored. Open any row's finding below for the file, line and evidence behind a deduction.

Findings 13

high Dynamic code execution in server code (src/footnote_mcp/tools_data/sandbox.py)MTC-SRC-001

In the server's implementation (`src/footnote_mcp/tools_data/sandbox.py:253`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: safe_builtins} try: exec(compile(code, "<recipe>", "exec"), namespace) extract = namespace.get("extract") if

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/footnote_mcp/tools_data/sandbox.py

high Shell/command execution in server code (src/footnote_mcp/tools_data/sandbox.py)MTC-SRC-002

In the server's implementation (`src/footnote_mcp/tools_data/sandbox.py:253`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: safe_builtins} try: exec(compile(code, "<recipe>", "exec"), namespace) extract = namespace.get("extract") if

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/footnote_mcp/tools_data/sandbox.py

medium Unconstrained URL/host parameter "url" on "web_read"MTC-CAP-007

Tool "web_read" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool web_read · inputSchema.properties.url

medium Unconstrained URL/host parameter "url" on "web_extract_tables"MTC-CAP-007

Tool "web_extract_tables" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool web_extract_tables · inputSchema.properties.url

medium Unconstrained URL/host parameter "url" on "web_parse_file"MTC-CAP-007

Tool "web_parse_file" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool web_parse_file · inputSchema.properties.url

medium Unconstrained URL/host parameter "url" on "web_fetch_json"MTC-CAP-007

Tool "web_fetch_json" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool web_fetch_json · inputSchema.properties.url

medium Unconstrained URL/host parameter "url" on "web_archive_fetch"MTC-CAP-007

Tool "web_archive_fetch" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool web_archive_fetch · inputSchema.properties.url

medium Unconstrained URL/host parameter "url" on "web_fetch_authenticated"MTC-CAP-007

Tool "web_fetch_authenticated" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool web_fetch_authenticated · inputSchema.properties.url

medium Unconstrained URL/host parameter "start_url" on "web_crawl"MTC-CAP-007

Tool "web_crawl" takes a URL/host parameter "start_url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool web_crawl · inputSchema.properties.start_url

medium Dynamic module load from a non-literal (src/footnote_mcp/tools_data/health.py)MTC-SRC-005

In the server's implementation (`src/footnote_mcp/tools_data/health.py:56`): Loading a module chosen at runtime (from a variable) can pull in and run attacker-influenced code paths. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: try: __import__(module_name) checks[module_name] = {"ok": True} except Exception

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/footnote_mcp/tools_data/health.py

low Hardcoded egress to an external endpoint in packaging/dev tooling (tests/test_scraper.py)MTC-SRC-003

In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_scraper.py:109`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: None res = scraper.fetch("https://x.com", http_fn=http_fn) assert res["tier"] == "http" assert res["blocked

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server tests/test_scraper.py

low Hardcoded egress to an external endpoint in packaging/dev tooling (tests/test_tools_extra.py)MTC-SRC-003

In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_tools_extra.py:23`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: tools_extra.web_archive_fetch("http://x.com") assert result["archived"] is True assert result["snapshot_url"].s

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server tests/test_tools_extra.py

low Unconstrained path parameter "path" on "export_dataset"MTC-CAP-008

Tool "export_dataset" takes a path parameter "path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool export_dataset · inputSchema.properties.path

Tools 45

Each tool and what it can reach — statically extracted from the published source.

  • export_datasetreads sensitive data
  • web_archive_fetchingests untrusted input
  • web_crawlingests untrusted input
  • web_extract_tablesingests untrusted input
  • web_fetch_authenticatedingests untrusted input
  • web_fetch_jsoningests untrusted input
  • web_parse_fileingests untrusted input
  • web_readingests untrusted input
  • web_searchingests untrusted input
  • web_search_recentingests untrusted input
Show 35 more tools ↓
  • archive_searchno sensitive capability
  • browser_extract_tablesno sensitive capability
  • browser_extract_tables_for_date_rangeno sensitive capability
  • browser_set_date_rangeno sensitive capability
  • build_research_debug_reportno sensitive capability
  • check_date_completenessno sensitive capability
  • classify_sourceno sensitive capability
  • corroborate_claimno sensitive capability
  • encyclopedia_searchno sensitive capability
  • evidence_entailmentno sensitive capability
  • generate_search_queriesno sensitive capability
  • github_searchno sensitive capability
  • locate_claim_spanno sensitive capability
  • papers_searchno sensitive capability
  • recipe_registryno sensitive capability
  • reconcile_time_seriesno sensitive capability
  • resolve_unitsno sensitive capability
  • source_cache_getno sensitive capability
  • source_cache_putno sensitive capability
  • startup_health_checkno sensitive capability
  • tool_code_generateno sensitive capability
  • tool_code_run_sandboxedno sensitive capability
  • tool_code_validateno sensitive capability
  • tool_promoteno sensitive capability
  • tool_spec_proposeno sensitive capability
  • validate_unit_rowsno sensitive capability
  • web_clickno sensitive capability
  • web_deep_searchno sensitive capability
  • web_detect_downloadsno sensitive capability
  • web_extractno sensitive capability
  • web_navigateno sensitive capability
  • web_screenshotno sensitive capability
  • web_scrollno sensitive capability
  • web_snapshotno sensitive capability
  • web_typeno sensitive capability

What this scan could not see

Versions 4

Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.

VersionScoreFindingsEngineScanned
v0.2.6 latest A 93/100 13 1.13.0 2026-08-25
v0.2.5 A 93/100 13 1.12.1 2026-08-05
v0.2.3 A 93/100 13 1.12.1 2026-07-27
v0.2.0 A 93/100 13 1.9.0 2026-07-23

Embed this score

Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.

MCP Trust Score: A · 93/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/footnote-mcp/badge.svg)](https://mcptrustchecker.com/registry/footnote-mcp)
HTML
<a href="https://mcptrustchecker.com/registry/footnote-mcp"><img src="https://mcptrustchecker.com/registry/footnote-mcp/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/footnote-mcp/badge.json via https://img.shields.io/endpoint?url=…

Verify this score yourself

The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.

npx mcptrustchecker scan footnote-mcp --online --registry pypi

Use the free API → How scoring works

More in Web, Search & Scraping