From 3c90b84619b31330f6762a3e199f644fbba3629f Mon Sep 17 00:00:00 2001 From: Jonathan Arnett Date: Fri, 31 Oct 2025 12:57:09 -0400 Subject: [PATCH 1/2] Add instructions on enabling JSON search --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index fc1f7ef..2a07dee 100644 --- a/README.md +++ b/README.md @@ -71,6 +71,18 @@ A few third-party MCP servers exist, but they’re API-locked, incomplete, or a git clone https://github.com/searxng/searxng-docker.git cd searxng-docker sed -i "s|ultrasecretkey|$(openssl rand -hex 32)|g" searxng/settings.yml +``` + +You will also need to enable JSON support for local SearXNG instance. You can do this by adding the following to the bottom of the `searxng/settings.xml` file: +```yaml +search: + formats: + - html + - json +``` + +Then, start the local SearXNG instance: +```bash docker compose up -d ``` From bbeeeb4617159506e22bb0d37cca4590cd932555 Mon Sep 17 00:00:00 2001 From: Jonathan Arnett Date: Fri, 31 Oct 2025 12:57:23 -0400 Subject: [PATCH 2/2] Fix URL --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2a07dee..ba9ab8f 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ curl "http://localhost:8080/search?q=test&format=json" ### 2️⃣ Install WebFetch.MCP ```bash -git clone https://github.com/manull/webfetch-mcp.git +git clone https://github.com/manooll/webfetch-mcp.git cd webfetch-mcp npm install node server.mjs