searxng-mcp: Instructions file for Codex

AGENTS.md

searxng-mcp AGENTS.md is an instructions file for Codex, OpenCode from TadMSTR/searxng-mcp. It costs 1,760 tokens per session, scanned A, original, MIT.

Project instructions for an MCP server that provides private web search through a self-hosted SearXNG search engine. It can find results, retrieve page text, crawl websites, and optionally create summaries with a local language model.

In plain words
What is it for?
Use them when building, configuring, or testing searches, URL fetching, website crawling, result caching, domain statistics, or local-model summaries.
Why use it?
They explain how the search server is organised, what its tools do, and how its dependencies and services fit together. This helps developers run and maintain a setup that combines search, page retrieval, caching, and optional summarisation.

Instructions file for CodexOpenCode

Written for Codex and OpenCode: the file is AGENTS.md. Also seen: mentions AGENTS.md.

This is TadMSTR/searxng-mcp's own configuration. It tells Codex and OpenCode how to work on searxng-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything searxng-mcp configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/TadMSTR/searxng-mcp/main/AGENTS.md
Clone the repo
git clone --depth 1 https://github.com/TadMSTR/searxng-mcp

Made for: Codex, OpenCode.

Wrote 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.

agentmods badge for searxng-mcp AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/tadmstr/searxng-mcp/agents-md.svg)](https://agentmods.dev/instructions/tadmstr/searxng-mcp/agents-md)
Your own site
<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>
Per session 1,760 This file is loaded in full into every session.
When invoked 1,760 The same file — it is already loaded in full.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured today against content hash 0b8533bd52c1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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.

AGENTS.md · 117 lines

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 results
  • search_and_fetch — same as search but also fetches full content of the top result(s) via the fetch cascade
  • search_and_summarize — search, fetch, then synthesize a summary with citations via Ollama (default qwen3:14b, override with OLLAMA_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; optional target_selector/wait_for_selector and max_tokens budget
  • crawl_site — crawl a site and return a page manifest (Firecrawl → sitemap → optional BFS); content cached for follow-up fetch_url
  • clear_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)

Read the full file on GitHub · 117 lines

Changes

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.

  1. today Changed · +50 tokens per session 0b8533bd52c1
  2. 8d ago First seen · 117 lines · 1,710 tokens per session scan A a1e56b72d2d6

Subscribe to this mod's changes

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.

Related

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.

openai/codex · 5,182 tokens

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).

microsoft/vscode · 6,785 tokens

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.

vercel/next.js · 7,296 tokens

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.

langchain-ai/langchain · 4,469 tokens

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).

microsoft/vscode · 5,001 tokens

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.

github/spec-kit · 7,104 tokens