mcp-searxng 0.2.1 → 0.2.2

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.
Files changed (3) hide show
  1. package/README.md +15 -15
  2. package/dist/index.js +2 -2
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -38,19 +38,17 @@ To install SearxNG Server for Claude Desktop automatically via [Smithery](https:
38
38
  npx -y @smithery/cli install @ihor-sokoliuk/server-searxng --client claude
39
39
  ```
40
40
 
41
- ### Installing via npm
42
-
43
- ```bash
44
- npm install -g mcp-searxng
45
- ```
46
-
47
- And then in your MCP config file:
41
+ ### NPX
48
42
 
49
43
  ```json
50
44
  {
51
45
  "mcpServers": {
52
46
  "searxng": {
53
- "command": "mcp-searxng",
47
+ "command": "npx",
48
+ "args": [
49
+ "-y",
50
+ "mcp-searxng"
51
+ ],
54
52
  "env": {
55
53
  "SEARXNG_URL": "YOUR_SEARXNG_INSTANCE_URL"
56
54
  }
@@ -59,17 +57,19 @@ And then in your MCP config file:
59
57
  }
60
58
  ```
61
59
 
62
- ### NPX
60
+ ### NPM
61
+
62
+ ```bash
63
+ npm install -g mcp-searxng
64
+ ```
65
+
66
+ And then in your MCP config file:
63
67
 
64
68
  ```json
65
69
  {
66
70
  "mcpServers": {
67
71
  "searxng": {
68
- "command": "npx",
69
- "args": [
70
- "-y",
71
- "mcp-searxng"
72
- ],
72
+ "command": "mcp-searxng",
73
73
  "env": {
74
74
  "SEARXNG_URL": "YOUR_SEARXNG_INSTANCE_URL"
75
75
  }
@@ -101,7 +101,7 @@ Add this to your `claude_desktop_config.json`:
101
101
  "--rm",
102
102
  "-e",
103
103
  "SEARXNG_URL",
104
- "mcp-server-searxng:latest"
104
+ "mcp-searxng:latest"
105
105
  ],
106
106
  "env": {
107
107
  "SEARXNG_URL": "YOUR_SEARXNG_INSTANCE_URL"
package/dist/index.js CHANGED
@@ -45,8 +45,8 @@ const READ_URL_TOOL = {
45
45
  };
46
46
  // Server implementation
47
47
  const server = new Server({
48
- name: "example-servers/searxng-search",
49
- version: "0.1.0",
48
+ name: "ihor-sokoliuk/mcp-searxng",
49
+ version: "0.2.2",
50
50
  }, {
51
51
  capabilities: {
52
52
  resources: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-searxng",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "MCP server for SearXNG integration",
5
5
  "license": "MIT",
6
6
  "author": "Ihor Sokoliuk (https://github.com/ihor-sokoliuk)",