{
  "name": "@sinch/mcp",
  "version": "0.0.1-alpha.6",
  "description": "Sinch MCP server",
  "homepage": "",
  "files": [
    "dist",
    "bin"
  ],
  "main": "dist/index.js",
  "bin": {
    "mcp-server": "./bin/mcp-server.js"
  },
  "author": "Sinch <support@sinch.com> (https://sinch.com/)",
  "contributors": [
    "Antoine Sein <antoine.sein@sinch.com>"
  ],
  "keywords": [
    "Sinch",
    "CPaaS",
    "MCP",
    "APIs"
  ],
  "license": "Apache-2.0",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.17.3",
    "@sinch/sdk-core": "1.4.1",
    "axios": "^1.8.4",
    "dotenv": "^16.5.0",
    "express": "^5.1.0",
    "undici": "^7.9.0",
    "zod": "^3.24.2"
  },
  "devDependencies": {
    "@anthropic-ai/sdk": "^0.60.0",
    "@eslint/compat": "^1.2.9",
    "@eslint/js": "^9.26.0",
    "@google/genai": "^1.15.0",
    "@types/express": "^5.0.3",
    "@types/jest": "^29.5.14",
    "@typescript-eslint/eslint-plugin": "^8.32.0",
    "@typescript-eslint/parser": "^8.32.0",
    "eslint": "^9.0.0",
    "eslint-config-prettier": "^10.1.2",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-jest": "^28.13.3",
    "eslint-plugin-jest-extended": "^3.0.0",
    "eslint-plugin-jest-formatting": "^3.1.0",
    "eslint-plugin-prettier": "^5.4.1",
    "globals": "^16.2.0",
    "jest": "^29.7.0",
    "openai": "^5.12.2",
    "ts-jest": "^29.3.4",
    "typescript": "^5.3.3",
    "typescript-eslint": "^8.32.0"
  },
  "scripts": {
    "build": "tsc --project tsconfig.build.json && tsc --project tsconfig.tests.json",
    "start:stdio": "tsc && node dist/index.js",
    "start:sse": "tsc --project tsconfig.build.json && npx -y supergateway --stdio \"node dist/index.js\" --port 8000 --baseUrl http://localhost:8000 --ssePath /sse --messagePath /message",
    "start:http": "tsc --project tsconfig.build.json && npx -y supergateway --stdio \"node dist/index.js\" --port 8000 --outputTransport streamableHttp",
    "lint": "eslint src/ tests/ --ext .ts",
    "prettier": "prettier './**/*.{js,ts,md}' --write",
    "test": "jest --testPathIgnorePatterns='/tests/integration/'",
    "test:integration": "jest tests/integration/llms --runInBand"
  },
  "engines": {
    "node": ">=20.18.1 < 23"
  }
}
