{
  "name": "sfdmu-mcp",
  "version": "0.3.0",
  "description": "MCP server for Salesforce data migrations — generate, validate, preview, and execute SFDMU export.json configs from natural language using the sf sfdmu plugin",
  "keywords": [
    "mcp",
    "model-context-protocol",
    "salesforce",
    "sfdmu",
    "data-migration",
    "salesforce-cli",
    "export-json",
    "ai",
    "copilot",
    "llm"
  ],
  "homepage": "https://github.com/drahmatdev/sfdmu-mcp#readme",
  "bugs": {
    "url": "https://github.com/drahmatdev/sfdmu-mcp/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/drahmatdev/sfdmu-mcp.git"
  },
  "license": "MIT",
  "author": "",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "sfdmu-mcp": "dist/index.js"
  },
  "files": [
    "dist/",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "prebuild": "mkdir -p src/assets && curl -fsSL https://raw.githubusercontent.com/forcedotcom/SFDX-Data-Move-Utility/master/schemas/export.schema.json -o src/assets/export.schema.json",
    "build": "tsc -p tsconfig.json",
    "postbuild": "mkdir -p dist/assets && cp src/assets/export.schema.json dist/assets/export.schema.json",
    "clean": "rm -rf dist coverage",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "lint": "eslint src tests --ext .ts",
    "lint:fix": "eslint src tests --ext .ts --fix",
    "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
    "docker-build": "docker build -t sfdmu-mcp .",
    "docker-run": "docker run --rm -v ~/.sf:/home/sfdmuuser/.sf:ro sfdmu-mcp",
    "prepack": "node -e \"const fs=require('fs');const r=fs.readFileSync('README.md','utf8');if(r.trim().length<100){console.error('ERROR: README.md missing or too short — cannot pack');process.exit(1);}\"",
    "prepublishOnly": "npm run lint && npm test && npm run build"
  },
  "engines": {
    "node": ">=20"
  },
  "contributes": {
    "mcpServers": {
      "sfdmu-mcp": {
        "type": "stdio",
        "command": "npx",
        "args": ["-y", "sfdmu-mcp@latest"]
      }
    }
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.12.0",
    "ajv": "^8.17.1",
    "ajv-formats": "^3.0.1",
    "debug": "^4.3.7",
    "dotenv": "^16.4.7",
    "zod": "^3.24.2"
  },
  "devDependencies": {
    "@types/debug": "^4.1.12",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.0.0",
    "@typescript-eslint/eslint-plugin": "^7.18.0",
    "@typescript-eslint/parser": "^7.18.0",
    "eslint": "^8.57.1",
    "jest": "^29.7.0",
    "jest-fetch-mock": "^3.0.3",
    "prettier": "^3.3.3",
    "ts-jest": "^29.2.5",
    "ts-node": "^10.9.2",
    "typescript": "^5.6.3"
  }
}
