Borrowing it
Nothing to install: this file belongs to TadMSTR/searxng-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/TadMSTR/searxng-mcp/main/AGENTS.mdgit clone --depth 1 https://github.com/TadMSTR/searxng-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/tadmstr/searxng-mcp/agents-md)<a href="https://agentmods.dev/instructions/tadmstr/searxng-mcp/agents-md"><img src="https://agentmods.dev/badge/instructions/tadmstr/searxng-mcp/agents-md.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.01760 | $0.01760 |
| Opus 5 | $0.00880 | $0.00880 |
| Sonnet 5 | $0.00352 | $0.00352 |
| Haiku 4.5 | $0.00176 | $0.00176 |
Grade A, and why
searxng-mcp AGENTS.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 117 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md — searxng-mcp
MCP server for private web search via a self-hosted SearXNG instance. Reranks results with a local ML model, fetches full-page content via a four-tier cascade (Firecrawl → Crawl4AI → raw HTTP → Wayback Machine opt-in), and optionally expands queries and synthesizes summaries via Ollama.
What it does
Exposes seven MCP tools:
search— queries SearXNG, reranks results with a local ML model, returns top N structured resultssearch_and_fetch— same assearchbut also fetches full content of the top result(s) via the fetch cascadesearch_and_summarize— search, fetch, then synthesize a summary with citations via Ollama (defaultqwen3:14b, override withOLLAMA_SUMMARIZE_MODEL). If the LLM is unavailable it degrades to raw fetched pages, and says so: the payload leads with a--- summarization unavailable (<kind>: <detail>) ---marker. Absence of that marker means you got a real synthesis.fetch_url— fetch and extract readable markdown from any public URL; GitHub URLs use the GitHub API, YouTube/Reddit URLs have opt-in fast paths; optionaltarget_selector/wait_for_selectorandmax_tokensbudgetcrawl_site— crawl a site and return a page manifest (Firecrawl → sitemap → optional BFS); content cached for follow-upfetch_urlclear_cache— purge the Valkey result cache (search, fetch, crawl, or all)domain_stats— read-only view of the domain capability database (single-domain or aggregate) with MCP structured output
Structure
src/
index.ts # Entry point — creates MCP server, registers tools, selects transport
http-transport.ts # HTTP transport: bearer gate, /health, per-session routing + eviction
tools.ts # Tool definitions (schemas + handlers)
search.ts # SearXNG client
fetch.ts # Fetch orchestrator: fast paths, robots gate, tier cascade, caching, post-extract
fetch-utils.ts # Shared primitives: USER_AGENT, assertPublicUrl, safeFetch, FetchTuning, readBoundedText, TierResult
ssrf-guard.ts # isPrivateOrReservedAddress + DNS-validating undici dispatcher (connect-time, redirect-hop safe)
youtube.ts # YouTube transcript fast path (timedtext; opt-in via robots)
reddit.ts # Reddit .json fast path (post + top comments; opt-in via robots)
tiers/ # Tier handlers (one file per tier)
firecrawl.ts # Tier 1: Firecrawl JS-rendering scrape
crawl4ai.ts # Tier 2: Crawl4AI headless fetch + Readability comparison
raw.ts # Tier 3: raw HTTP + Readability; fetchRawHtmlForMetadata for post-extract
wayback.ts # Tier 4: Wayback Machine CDX lookup + rawFetch (opt-in, WAYBACK_ENABLED)
github.ts # GitHub blob/README API fetch
index.ts # Barrel re-export
reranker.ts # Jina-compatible reranker client + recency weighting
ollama.ts # Ollama client (query expansion + summarization)
cache.ts # Valkey/Redis caching layer (get/set + Lua EVAL compare-and-set + SCAN)
domain-db.ts # Per-domain capability records (tier stats, capabilities); best-effort writes
domain-stats.ts # Bounded SCAN enumerate + aggregate helpers, summary/formatters (tool + job)
domain-snapshot.ts # Durable JSON snapshot write/prune/load + non-clobbering restore
domains.ts # Domain boost/block filtering + profiles
config.ts # Environment variable configuration
types.ts # Shared type definitions
cli/
dump-domain.ts # Print one domain's capability record
domain-db-maintenance.ts # Standalone job: OTel gauges + durable snapshot (cron/PM2, single writer)
restore-domain-db.ts # Re-seed the domain-db from the newest snapshot after a flush
tests/
*.test.ts # Vitest unit tests (564 tests across 51 files)
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- today Changed · +50 tokens per session 0b8533bd52c1
- 8d ago First seen · 117 lines · 1,710 tokens per session scan A a1e56b72d2d6
searxng-mcp AGENTS.md is an instructions file published in the GitHub repository TadMSTR/searxng-mcp (21 stars, last pushed today), licensed MIT. It adds 1,760 tokens to every session, about $0.0088 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.