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

tmux-IDE: A Terminal-Based Multi-Agent IDE for Claude
tmux-IDE is an open-source, declarative terminal IDE focused on agentic engineering that creates multi-agent layouts for Claude coding agents. It allows developers to boot into their IDE through SSH, give prompts to Claude, and close their machine while Claude continues working in tmux sessions.

re_gent: Git for AI Coding Agents – Version Control for Agent Activity
re_gent is an open-source tool that provides version control for AI agent sessions, tracking every tool call, storing prompts and file diffs, and enabling commands like `rgt log`, `rgt blame`, and `rgt rewind` (coming soon).

Developer builds .NET SaaS template generator with Claude Code, shares workflow insights
A developer open-sourced NETrock, a .NET 10 SaaS starter template with authentication, ORM, and background jobs, then built a client-side generator for it using Claude Code. The generator lets users pick features and download a working .zip project that stays in their browser.

SimplePDF Copilot: Client-Side AI Tool Calling for PDF Form Filling
SimplePDF Copilot uses client-side tool calling to let an LLM fill fields, add fields, delete pages, and more in PDFs — without the PDF leaving the browser.