{
  "name": "@iflow-mcp/smartlead-mcp-server",
  "version": "1.2.2",
  "description": "MCP server for Smartlead campaign management integration. Features include creating campaigns, updating campaign settings, and managing campaign sequences.",
  "author": "Jonathan Politzki",
  "type": "module",
  "bin": {
    "smartlead-mcp": "dist/cli.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc",
    "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
    "test:supergateway": "node test_supergateway.js",
    "start": "node dist/index.js",
    "start:supergateway": "USE_SUPERGATEWAY=true SUPERGATEWAY_API_KEY=test_key node dist/index.js",
    "start:sse": "npx -y supergateway --stdio \"node dist/index.js\" --port 3000",
    "start:sse-supergateway": "npx -y supergateway --stdio \"USE_SUPERGATEWAY=true SUPERGATEWAY_API_KEY=test_key node dist/index.js\" --port 3000",
    "dev": "npm run build && npm start",
    "dev:supergateway": "npm run build && npm run start:supergateway",
    "dev:sse": "npm run build && npm run start:sse",
    "dev:sse-supergateway": "npm run build && npm run start:sse-supergateway",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "format": "prettier --write .",
    "prepare": "npm run build"
  },
  "license": "MIT",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.4.1",
    "axios": "^1.6.2",
    "commander": "^13.1.0",
    "dotenv": "^16.4.7",
    "mcp-proxy-auth": "^1.0.2",
    "p-queue": "^8.0.1",
    "uuid": "^11.1.0"
  },
  "devDependencies": {
    "@jest/globals": "^29.7.0",
    "@types/jest": "^29.5.14",
    "@types/node": "^20.10.5",
    "@types/uuid": "^10.0.0",
    "@typescript-eslint/eslint-plugin": "^7.0.0",
    "@typescript-eslint/parser": "^7.0.0",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^9.1.0",
    "jest": "^29.7.0",
    "jest-mock-extended": "^4.0.0-beta1",
    "prettier": "^3.1.1",
    "ts-jest": "^29.1.1",
    "typescript": "^5.3.3"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "keywords": [
    "mcp",
    "smartlead",
    "campaign-management",
    "email-marketing"
  ]
}
