{
  "name": "@mediacat/mcp",
  "version": "0.1.11",
  "description": "A Model Context Protocol (MCP) server for MediaCAT's subtitle generation workflow with XL8.ai integration. Supports local file processing, real-time SSE updates, and dynamic language detection.",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "mediacat-mcp": "dist/index.js"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "dev": "tsx src/index.ts",
    "prepublishOnly": "npm run build",
    "test": "node test-mcp.js --local",
    "test:mcp": "node test-mcp.js --local",
    "test:remote": "node test-mcp.js",
    "lint": "eslint src --ext .ts",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist",
    "npm-publish": "npm run clean && npm run build && npm publish"
  },
  "dependencies": {
    "@aws-sdk/client-s3": "^3.823.0",
    "@modelcontextprotocol/sdk": "^0.5.0",
    "cors": "^2.8.5",
    "eventsource": "^2.0.2",
    "express": "^4.18.2",
    "fluent-ffmpeg": "^2.1.2",
    "form-data": "^4.0.2",
    "helmet": "^7.1.0",
    "mediacat-mcp": "^0.1.3",
    "multer": "^1.4.5-lts.1",
    "node-fetch": "^3.3.2"
  },
  "devDependencies": {
    "@types/cors": "^2.8.17",
    "@types/express": "^4.17.21",
    "@types/fluent-ffmpeg": "^2.1.24",
    "@types/multer": "^1.4.11",
    "@types/node": "^20.10.0",
    "@typescript-eslint/eslint-plugin": "^6.13.0",
    "@typescript-eslint/parser": "^6.13.0",
    "eslint": "^8.54.0",
    "tsx": "^4.6.0",
    "typescript": "^5.3.0"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "package.json"
  ],
  "keywords": [
    "mcp",
    "model-context-protocol",
    "subtitle-generation",
    "xl8",
    "mediacat",
    "server",
    "sse",
    "video-processing",
    "ai"
  ],
  "author": "Tim Jung",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/xl8-ai/mediacat-mcp.git"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "types": "./dist/index.d.ts",
  "bugs": {
    "url": "https://github.com/xl8-ai/mediacat-mcp/issues"
  },
  "homepage": "https://github.com/xl8-ai/mediacat-mcp#readme"
}
