mcp-searxng 0.10.2 → 0.10.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -8,6 +8,22 @@ An [MCP server](https://modelcontextprotocol.io/introduction) implementation tha
8
8
 
9
9
  <a href="https://glama.ai/mcp/servers/0j7jjyt7m9"><img width="380" height="200" src="https://glama.ai/mcp/servers/0j7jjyt7m9/badge" alt="SearXNG Server MCP server" /></a>
10
10
 
11
+ ## How It Works
12
+
13
+ `mcp-searxng` is an **MCP (Model Context Protocol) server** — it is a separate process that AI assistants (such as Claude) connect to in order to perform web searches. It communicates with a SearXNG instance over SearXNG's HTTP JSON API.
14
+
15
+ > **Not a SearXNG plugin:** This project cannot be installed as a native SearXNG plugin (i.e., a Python module loaded inside the SearXNG process). It is a standalone MCP server that runs alongside your SearXNG instance and queries it via its API. You point it at any existing SearXNG instance by setting the `SEARXNG_URL` environment variable.
16
+
17
+ ```
18
+ AI Assistant (e.g. Claude)
19
+ │ MCP protocol
20
+
21
+ mcp-searxng (this project — Node.js process)
22
+ │ HTTP JSON API (SEARXNG_URL)
23
+
24
+ SearXNG instance
25
+ ```
26
+
11
27
  ## Features
12
28
 
13
29
  - **Web Search**: General queries, news, articles, with pagination.
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- declare const packageVersion = "0.10.2";
2
+ declare const packageVersion = "0.10.3";
3
3
  export { packageVersion };
4
4
  export declare function isWebUrlReadArgs(args: unknown): args is {
5
5
  url: string;
package/dist/index.js CHANGED
@@ -11,7 +11,7 @@ import { createConfigResource, createHelpResource } from "./resources.js";
11
11
  import { createHttpServer } from "./http-server.js";
12
12
  import { validateEnvironment as validateEnv } from "./error-handler.js";
13
13
  // Use a static version string that will be updated by the version script
14
- const packageVersion = "0.10.2";
14
+ const packageVersion = "0.10.3";
15
15
  // Export the version for use in other modules
16
16
  export { packageVersion };
17
17
  // Global state for logging level
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-searxng",
3
- "version": "0.10.2",
3
+ "version": "0.10.3",
4
4
  "mcpName": "io.github.ihor-sokoliuk/mcp-searxng",
5
5
  "description": "MCP server for SearXNG integration",
6
6
  "license": "MIT",