-
Notifications
You must be signed in to change notification settings - Fork 137
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "mcp-searxng",
"version": "1.7.1",
"mcpName": "io.github.ihor-sokoliuk/mcp-searxng",
"description": "MCP server for SearXNG integration",
"license": "MIT",
"author": "Ihor Sokoliuk (https://github.com/ihor-sokoliuk)",
"homepage": "https://github.com/ihor-sokoliuk/mcp-searxng",
"bugs": "https://github.com/ihor-sokoliuk/mcp-searxng/issues",
"repository": {
"type": "git",
"url": "https://github.com/ihor-sokoliuk/mcp-searxng"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"searxng",
"search",
"web-search",
"claude",
"ai",
"pagination",
"smithery",
"url-reader"
],
"type": "module",
"bin": {
"mcp-searxng": "dist/cli.js"
},
"main": "dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"watch": "tsc --watch",
"test": "cross-env SEARXNG_URL=https://test-searx.example.com tsx __tests__/run-all.ts",
"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",
"test:e2e": "node --env-file-if-exists=.env.e2e node_modules/.bin/tsx __tests__/e2e/run-e2e.ts",
"bootstrap": "npm install && npm run build",
"inspector": "DANGEROUSLY_OMIT_AUTH=true npx @modelcontextprotocol/inspector node dist/cli.js",
"lint": "eslint src __tests__",
"audit:deps": "npm audit --audit-level=moderate",
"security": "npm run lint && npm run audit:deps",
"postversion": "TAG=$(node scripts/update-version.js | tail -1) && git add src/version.ts .mcp/server.json && git commit --amend --no-edit && git tag -f $TAG"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"cors": "^2.8.6",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"node-html-markdown": "^2.0.0",
"node-html-parser": "^6.1.13",
"undici": "7.28.0"
},
"devDependencies": {
"@types/node": "22.19.21",
"@types/supertest": "^7.2.0",
"@typescript-eslint/eslint-plugin": "8.61.1",
"@typescript-eslint/parser": "8.61.1",
"c8": "^11.0.0",
"cross-env": "^10.1.0",
"eslint": "10.5.0",
"eslint-plugin-security": "^4.0.0",
"fast-check": "^4.8.0",
"shx": "^0.4.0",
"supertest": "^7.2.2",
"tsx": "4.22.4",
"typescript": "^5.8.3"
},
"overrides": {
"hono": ">=4.12.25"
}
}