TinySearch v0.2.0: Lightweight Web Search for Local LLMs Now Backed by SearXNG

TinySearch v0.2.0 is a lightweight open-source MCP/FastAPI web-search tool for small local LLMs. It searches the web, crawls a few pages, chunks/retrieves/reranks useful parts, and outputs a compact context blob capped at 8k tokens — no more dumping 30k tokens of scraped nonsense into agent prompts.
Key Changes in v0.2.0
- SearXNG is now the default search backend (replaces DuckDuckGo)
- You can point TinySearch at your own SearXNG instance
- More flexible and less dependent on a single provider
- Output still capped at 8k tokens, optimized for LLM agents
DuckDuckGo started throwing limits and CAPTCHAs more often in recent weeks. For an MCP tool that agents depend on, that wasn't acceptable. SearXNG adds a bit of overhead — calls now take about 10-15 seconds — but the author says it's worth the convenience.
Who It's For
Developers using smaller local models with Cline, Roo, OpenCode, MCP agents, or any setup where context budgets are tight. The author uses TinySearch daily with Qwen3.5-9B for questions about library versions, function calls, and Azure/GCP API specifics.
Repository: github.com/MarcellM01/TinySearch
📖 Read the full source: r/LocalLLaMA
👀 See Also

yburn: Tool to audit and replace unnecessary AI agent cron jobs
yburn is a Python tool that audits AI agent cron jobs and replaces those that don't need LLMs with standalone Python scripts. The creator found 58% of 98 cron jobs were purely mechanical tasks like system health checks and git backups.

HF Viewer: Visualize Any Hugging Face Model Graph Instantly
HF Viewer is a browser-based tool that renders an interactive architecture graph for any Hugging Face model. Paste a URL or repo name, inspect the graph without local setup.

NexQuant: Rust-native 3-bit KV-cache engine for edge deployment
NexQuant is a production-hardened Rust engine that enables running high-context models on consumer hardware with 3-5x memory reduction. It supports Metal, CUDA, Vulkan, and CPU backends.
Claude Code vs Codex: 36 vs 28 files, $2.50 vs $2.04, infinite loop caught — real-world comparison
A developer runs the same two tasks on Claude Code and Codex (Cursor): PR triage bot and real-time code review UI. Results: 36 vs 28 files, $2.50 vs $2.04 cost, Claude produced fewer TypeScript errors, Codex had an infinite React loop.