package.json•2.09 kB
{
"name": "mcp-searxng",
"version": "0.6.5",
"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": ">=18"
},
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"watch": "tsc --watch",
"test": "tsx test-suite.ts",
"bootstrap": "npm install && npm run build",
"test:watch": "tsx --watch test-suite.ts",
"test:coverage": "c8 --reporter=text --reporter=lcov --reporter=html tsx test-suite.ts",
"test:ci": "c8 --reporter=text --reporter=lcov tsx test-suite.ts",
"inspector": "DANGEROUSLY_OMIT_AUTH=true npx @modelcontextprotocol/inspector node dist/index.js",
"postversion": "node scripts/update-version.js && git add src/index.ts && git commit --amend --no-edit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.17.4",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"cors": "^2.8.5",
"express": "^5.1.0",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.6",
"node-html-markdown": "^1.3.0"
},
"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"
}
}