Every time your AI agent searches the web, that query goes to Google, Brave, or Microsoft. Here's how to keep it private.
Your AI assistant searches the web dozens of times a day. Each query reveals:
- What you're researching
- Your business interests
- Your competitive analysis
- Your personal questions
All of this goes straight to API providers who log everything.
The uncomfortable truth: Your AI's searches are more revealing than your browser history.
SearXNG is a free, open-source metasearch engine. It aggregates results from Google, Bing, DuckDuckGo, and 70+ other sources — without them knowing who's searching.
docker run -d -p 8080:8080 searxng/searxngThat's it. You now have private search at localhost:8080.
Instead of:
curl "https://api.brave.com/search?q=my+secret+query" \
-H "X-Subscription-Token: xxx"Use:
curl "http://localhost:8080/search?q=my+secret+query&format=json"Same results. Zero tracking. No API key needed.
| Before | After |
|---|---|
| Queries sent to Brave/Google | Queries stay on your machine |
| $0.003 per search | Free forever |
| They log your searches | You control the logs |
| API key required | No authentication needed |
If you run multiple AI agents, you probably want to know who searched what.
We built a simple registry:
Agent → API Key → Logged Search → SearXNG → Results
Each agent gets a key. Every search is logged locally. Full audit trail, zero external exposure.
Dashboard shows:
- Which agent searched
- What they searched for
- When
- How many results
All on your infrastructure.
docker run -d --name searxng -p 8080:8080 searxng/searxngTest it:
curl "http://localhost:8080/search?q=test&format=json" | jq '.results[:3]'Done. Your AI now has private web search.
- Your queries are valuable data — Don't give them away
- Compliance — Some industries require data sovereignty
- Competitive intelligence — Your research is your edge
- It's free — No more API bills
- SearXNG: github.com/searxng/searxng
- Public instances: searx.space (if you don't want to self-host)
- Full Docker setup: docs.searxng.org
Your AI's searches should be as private as your thoughts.
48nauts — Privacy-first AI infrastructure