mcp-searxng-public
공개 SearXNG 인스턴스를 쿼리하고 HTML 콘텐츠를 JSON 결과로 구문 분석하는 MCP 서버
이론적 해석
제가 본 모든 SearXNG용 MCP 서버는 출력 형식으로 "json"을 사용합니다. SearXNG MCP 서버를 코딩하는 데는 확실히 더 빠른 방법이지만, JSON 형식을 제공하지 않는 거의 모든 공개 서버에서는 제대로 작동하지 않습니다.
이 서버는 최대 3개의 공개 SearXNG 서버(하나는 기본으로, 다른 하나는 대체 서버로 사용)에서 데이터를 읽고 그 결과를 JSON으로 구문 분석합니다.
Related MCP server: SearXNG Server
설치
npm install mcp-serxng-public 통해 설치합니다.
서버가 설치된 경우 실행 구성은 다음과 같습니다.
지엑스피1
( https://searx.space/ 의 모든 서버를 선택한 서버로 사용할 수 있습니다)
용법
서버는 하나의 엔드포인트( search 를 노출합니다. 엔드포인트는 두 개의 인수를 받습니다. query - 검색 쿼리와 선택적 time_range - https://docs.searxng.org/dev/search\_api.html 사양에 따라 시간 범위 매개변수( day , month 또는 year )를 받습니다.
반환되는 것은 객체의 배열입니다.
[
{
"url": "https://github.com/searxng/searxng",
"summary": "You can start SearXNG using make run in the terminal or by pressing Ctrl+Shift+B"
},
{
"url": "https://searx.bndkt.io/",
"summary": "Powered by searxng - 2025.3.22+5986629c6 — a privacy-respecting, open metasearch engine Source code | Issue tracker | Engine stats | Public instances | Contact instance maintainer"
},
{
"url": "https://docs.searxng.org/"
"summary": "SearXNG is a free internet metasearch engine which aggregates results from up to 243 search services. Users are neither tracked nor profiled. Additionally, SearXNG can be used over Tor …"
}
{
"url": "https://en.wikipedia.org/wiki/SearXNG",
"summary": "SearXNG is federated, and as such is hosted by several instances, public and private. Private instances are hosted on a local network, or run on the user's desktop computer itself, and are …"
}
]