{
  "name": "@tadmstr/searxng-mcp",
  "version": "3.18.0",
  "description": "MCP server for SearXNG — private web search for Claude Code",
  "main": "build/src/index.js",
  "bin": {
    "searxng-mcp": "build/src/index.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/TadMSTR/searxng-mcp.git"
  },
  "type": "module",
  "keywords": [
    "searxng",
    "mcp",
    "search"
  ],
  "author": "TadMSTR",
  "license": "MIT",
  "engines": {
    "node": ">=20"
  },
  "files": [
    "build/src/",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "@mozilla/readability": "^0.6.0",
    "@nats-io/nats-core": "^3.4.0",
    "@nats-io/transport-node": "^3.4.0",
    "@opentelemetry/api": "^1.9.1",
    "@opentelemetry/exporter-metrics-otlp-http": "^0.220.0",
    "@opentelemetry/exporter-trace-otlp-http": "^0.220.0",
    "@opentelemetry/sdk-metrics": "^2.9.0",
    "@opentelemetry/sdk-node": "^0.220.0",
    "fast-xml-parser": "^5.10.0",
    "iovalkey": "^0.3.3",
    "jsdom": "^29.1.1",
    "robots-parser": "^3.0.1",
    "undici": "^7.28.0",
    "zod": "^3.25.76"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.5.3",
    "@types/jsdom": "^28.0.3",
    "@types/node": "^22.20.1",
    "@vitest/coverage-v8": "^4.1.10",
    "typescript": "^5.9.3",
    "vitest": "^4.1.10"
  },
  "scripts": {
    "build": "tsc && chmod 755 build/src/index.js",
    "test": "vitest run --typecheck",
    "test:watch": "vitest --typecheck",
    "coverage": "vitest run --coverage",
    "lint": "biome check src/ tests/",
    "lint:fix": "biome check --write src/ tests/",
    "dump-domain": "node build/src/cli/dump-domain.js",
    "domain-db-maintenance": "node build/src/cli/domain-db-maintenance.js",
    "restore-domain-db": "node build/src/cli/restore-domain-db.js"
  }
}