mcp-searxng 0.4.0 → 0.4.1
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 +3 -3
- package/package.json +13 -1
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@ To install SearxNG Server for Claude Desktop automatically via [Smithery](https:
|
|
|
48
48
|
npx -y @smithery/cli install @ihor-sokoliuk/server-searxng --client claude
|
|
49
49
|
```
|
|
50
50
|
|
|
51
|
-
### NPX
|
|
51
|
+
### [NPX](https://www.npmjs.com/package/mcp-searxng)
|
|
52
52
|
|
|
53
53
|
```json
|
|
54
54
|
{
|
|
@@ -67,7 +67,7 @@ npx -y @smithery/cli install @ihor-sokoliuk/server-searxng --client claude
|
|
|
67
67
|
}
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
-
### NPM
|
|
70
|
+
### [NPM](https://www.npmjs.com/package/mcp-searxng)
|
|
71
71
|
|
|
72
72
|
```bash
|
|
73
73
|
npm install -g mcp-searxng
|
|
@@ -90,7 +90,7 @@ And then in your MCP config file:
|
|
|
90
90
|
|
|
91
91
|
### Docker
|
|
92
92
|
|
|
93
|
-
#### Using Pre-built Image from Docker Hub
|
|
93
|
+
#### Using [Pre-built Image from Docker Hub](https://hub.docker.com/r/isokoliuk/mcp-searxng)
|
|
94
94
|
|
|
95
95
|
```bash
|
|
96
96
|
docker pull isokoliuk/mcp-searxng:latest
|
package/package.json
CHANGED
|
@@ -1,11 +1,23 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-searxng",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "MCP server for SearXNG integration",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Ihor Sokoliuk (https://github.com/ihor-sokoliuk)",
|
|
7
7
|
"homepage": "https://github.com/ihor-sokoliuk/mcp-searxng",
|
|
8
8
|
"bugs": "https://github.com/ihor-sokoliuk/mcp-searxng/issues",
|
|
9
|
+
"keywords": [
|
|
10
|
+
"mcp",
|
|
11
|
+
"modelcontextprotocol",
|
|
12
|
+
"searxng",
|
|
13
|
+
"search",
|
|
14
|
+
"web-search",
|
|
15
|
+
"claude",
|
|
16
|
+
"ai",
|
|
17
|
+
"pagination",
|
|
18
|
+
"smithery",
|
|
19
|
+
"url-reader"
|
|
20
|
+
],
|
|
9
21
|
"type": "module",
|
|
10
22
|
"bin": {
|
|
11
23
|
"mcp-searxng": "dist/index.js"
|