searxng-local
스타13
포크33
업데이트2026년 2월 24일 11:53
Web search via a locally-deployed SearXNG meta-search engine
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
파일 탐색기
2 개 파일SKILL.md
readonly메뉴
Web search via a locally-deployed SearXNG meta-search engine
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | searxng-local |
| description | Web search via a locally-deployed SearXNG meta-search engine |
| version | 1.0.0 |
| metadata | {"openclaw":{"requires":{"env":["SEARXNG_URL"]},"primaryEnv":"SEARXNG_URL"}} |
You have access to a SearXNG meta-search engine for web searches. SearXNG is already running as a separate Railway service — no installation, Docker setup, or configuration is needed.
Read the SEARXNG_URL environment variable to get the base URL, then make HTTP requests to the JSON API:
GET ${SEARXNG_URL}/search?q=YOUR_QUERY&format=json
curl "${SEARXNG_URL}/search?q=railway+deployment+best+practices&format=json"
# Search only IT-related results
curl "${SEARXNG_URL}/search?q=docker+compose+volumes&format=json&categories=it"
# Search for images
curl "${SEARXNG_URL}/search?q=architecture+diagram&format=json&categories=images"
curl "${SEARXNG_URL}/search?q=kubernetes+tutorial&format=json&language=en"
The JSON response contains a results array. Each result has:
title — Page titleurl — Direct link to the pagecontent — Text snippet / descriptionengine — Which search engine provided this resultcategory — Result category (general, it, images, etc.){
"query": "railway deployment",
"results": [
{
"title": "Railway Documentation",
"url": "https://docs.railway.com",
"content": "Railway is an infrastructure platform...",
"engine": "google",
"category": "general"
}
]
}
localhost or 127.0.0.1 — SearXNG runs on a separate Railway service accessible via private networking.$SEARXNG_URL from the environment to get the correct address.format=json query parameter is required — without it, SearXNG returns HTML.| Symptom | Cause | Fix |
|---|---|---|
| Connection refused | SearXNG service not running | Check Railway dashboard — the SearXNG service may need a redeploy |
| Empty results | Query too specific | Try broader search terms or remove category filter |
SEARXNG_URL is empty | Environment variable not set | Check Railway service variables — SEARXNG_URL should reference the SearXNG service |