{
  "name": "@opensubtitles/mcp-server",
  "version": "1.5.0",
  "description": "MCP server for OpenSubtitles API integration",
  "main": "dist/index.js",
  "bin": {
    "mcp-opensubtitles": "dist/index.js",
    "mcp-opensubtitles-remote": "remote-proxy.js",
    "mcp-opensubtitles-http": "http-proxy.js",
    "mcp-server": "dist/index.js"
  },
  "scripts": {
    "build": "tsc && node build.js",
    "watch": "tsc --watch",
    "dev": "npm run build && MCP_MODE=http PORT=1620 node dist/index.js",
    "dev:stdio": "npm run build && MCP_MODE=stdio node dist/index.js",
    "dev:remote": "node remote-proxy.js",
    "start": "MCP_MODE=http PORT=1620 node dist/index.js",
    "start:stdio": "MCP_MODE=stdio node dist/index.js",
    "start:remote": "node remote-proxy.js",
    "test": "npm run build && npm run test:evals",
    "test:evals": "npx mcp-eval evals/evals.ts dist/index.js",
    "inspector": "npm run build && npx @modelcontextprotocol/inspector dist/index.js",
    "prepublish": "npm run build"
  },
  "keywords": [
    "mcp",
    "subtitles",
    "opensubtitles",
    "claude"
  ],
  "author": "OpenSubtitles",
  "license": "MIT",
  "type": "module",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.17.5",
    "axios": "^1.11.0",
    "cors": "^2.8.5",
    "dotenv": "^16.4.7",
    "express": "^4.21.2",
    "zod": "^3.23.8"
  },
  "devDependencies": {
    "@types/cors": "^2.8.19",
    "@types/express": "^5.0.3",
    "@types/node": "^22.18.1",
    "typescript": "^5.7.3"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
