package.json•2.02 kB
{
"name": "mcp-searxng",
"version": "0.7.8",
"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/index.js"
},
"main": "dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"watch": "tsc --watch",
"test": "SEARXNG_URL=https://test-searx.example.com tsx __tests__/run-all.ts",
"test:coverage": "SEARXNG_URL=https://test-searx.example.com c8 --reporter=text tsx __tests__/run-all.ts",
"bootstrap": "npm install && npm run build",
"inspector": "DANGEROUSLY_OMIT_AUTH=true npx @modelcontextprotocol/inspector node dist/index.js",
"postversion": "TAG=$(node scripts/update-version.js | tail -1) && git add src/index.ts && git commit --amend --no-edit && git tag -f $TAG"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.17.4",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"cors": "^2.8.5",
"express": "^5.1.0",
"node-html-markdown": "^1.3.0",
"undici": "^6.20.1"
},
"devDependencies": {
"mcp-evals": "^1.0.18",
"@types/node": "^22.17.2",
"@types/supertest": "^6.0.3",
"c8": "^10.1.3",
"shx": "^0.4.0",
"supertest": "^7.1.4",
"tsx": "^4.20.5",
"typescript": "^5.8.3"
}
}