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.
- package/README.md +15 -15
- package/dist/index.js +2 -2
- 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
|
-
###
|
|
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": "
|
|
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
|
-
###
|
|
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": "
|
|
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-
|
|
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: "
|
|
49
|
-
version: "0.
|
|
48
|
+
name: "ihor-sokoliuk/mcp-searxng",
|
|
49
|
+
version: "0.2.2",
|
|
50
50
|
}, {
|
|
51
51
|
capabilities: {
|
|
52
52
|
resources: {},
|