# Searxng Search

> Web search and content extraction via SearXNG. No API keys, no rate limits. Available in containerized agents via the eddo-chat Docker network. Use when this capability is needed.

- Skill: `tomevault-io/searxng-search` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/searxng-search`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/searxng-search/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: DevOps & Infra
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/searxng-search

---


# SearXNG Search

Local web search using SearXNG metasearch engine. No external API keys required.

## Container Environment

Inside Docker containers, SearXNG is available at `http://searxng:8080` via the `eddo-chat` network.
The `SEARXNG_URL` environment variable is automatically set.

## Search

```bash
{baseDir}/search.js "query"                    # Basic search (5 results)
{baseDir}/search.js "query" -n 10              # More results
{baseDir}/search.js "query" --content          # Include page content as markdown
{baseDir}/search.js "query" -n 3 --content     # Combined
```

## Extract Page Content

```bash
{baseDir}/content.js https://example.com/article
```

Fetches a URL and extracts readable content as markdown.

## Output Format

```
--- Result 1 ---
Title: Page Title
Link: https://example.com/page
Snippet: Description from search results
Content: (if --content flag used)
  Markdown content extracted from the page...

--- Result 2 ---
...
```

## Advantages

- ✅ No API keys required
- ✅ No rate limits
- ✅ Privacy-preserving (local instance)
- ✅ Aggregates results from multiple search engines
- ✅ Fast and reliable
- ✅ Works in containerized agents

## When to Use

- Searching for documentation or API references
- Looking up facts or current information
- Fetching content from specific URLs
- Any task requiring web search without external dependencies

---
> Source: [walterra/eddoapp](https://github.com/walterra/eddoapp) — distributed by [TomeVault](https://tomevault.io).
<!-- tomevault:4.0:skill_md:2026-06-24 -->

