mcp-searxng 1.3.2 → 1.3.4
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 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[](https://hub.docker.com/r/isokoliuk/mcp-searxng)
|
|
11
11
|
[](LICENSE)
|
|
12
12
|
[](https://scorecard.dev/viewer/?uri=github.com/ihor-sokoliuk/mcp-searxng)
|
|
13
|
-
[](https://www.bestpractices.dev/projects/13143)
|
|
14
14
|
[](https://glama.ai/mcp/servers/ihor-sokoliuk/mcp-searxng)
|
|
15
15
|
|
|
16
16
|
An [MCP server](https://modelcontextprotocol.io/introduction) that integrates the [SearXNG](https://docs.searxng.org) API, giving AI assistants web search capabilities.
|
|
@@ -130,6 +130,8 @@ npm install -g mcp-searxng
|
|
|
130
130
|
docker pull isokoliuk/mcp-searxng:latest
|
|
131
131
|
```
|
|
132
132
|
|
|
133
|
+
Image signatures can be verified with Cosign — see [SECURITY.md](SECURITY.md) for instructions.
|
|
134
|
+
|
|
133
135
|
```json
|
|
134
136
|
{
|
|
135
137
|
"mcpServers": {
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const packageVersion = "1.3.
|
|
1
|
+
export declare const packageVersion = "1.3.4";
|
package/dist/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = "1.3.
|
|
1
|
+
export const packageVersion = "1.3.4";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-searxng",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.4",
|
|
4
4
|
"mcpName": "io.github.ihor-sokoliuk/mcp-searxng",
|
|
5
5
|
"description": "MCP server for SearXNG integration",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"build": "tsc && shx chmod +x dist/*.js",
|
|
39
39
|
"watch": "tsc --watch",
|
|
40
40
|
"test": "cross-env SEARXNG_URL=https://test-searx.example.com tsx __tests__/run-all.ts",
|
|
41
|
-
"test:coverage": "cross-env SEARXNG_URL=https://test-searx.example.com c8 --reporter=text --exclude 'dist/**' tsx __tests__/run-all.ts",
|
|
41
|
+
"test:coverage": "cross-env SEARXNG_URL=https://test-searx.example.com c8 --reporter=text --exclude 'dist/**' --check-coverage --lines 80 tsx __tests__/run-all.ts",
|
|
42
42
|
"test:e2e": "node --env-file-if-exists=.env.e2e node_modules/.bin/tsx __tests__/e2e/run-e2e.ts",
|
|
43
43
|
"bootstrap": "npm install && npm run build",
|
|
44
44
|
"inspector": "DANGEROUSLY_OMIT_AUTH=true npx @modelcontextprotocol/inspector node dist/cli.js",
|
|
@@ -66,6 +66,7 @@
|
|
|
66
66
|
"cross-env": "^10.1.0",
|
|
67
67
|
"eslint": "10.4.1",
|
|
68
68
|
"eslint-plugin-security": "^4.0.0",
|
|
69
|
+
"fast-check": "^4.8.0",
|
|
69
70
|
"shx": "^0.4.0",
|
|
70
71
|
"supertest": "^7.2.2",
|
|
71
72
|
"tsx": "4.22.4",
|