{
  "name": "@runhuman/mcp-server",
  "version": "4.1.0",
  "description": "MCP server for AI-orchestrated human QA testing. Let AI agents request real human testing of web applications.",
  "main": "dist/lib.js",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/lib.js",
      "require": "./dist/lib.js",
      "types": "./dist/lib.d.ts"
    },
    "./factory": {
      "import": "./dist/mcp-server-factory.js",
      "types": "./dist/mcp-server-factory.d.ts"
    },
    "./types": {
      "import": "./dist/types.js",
      "types": "./dist/types.d.ts"
    }
  },
  "bin": {
    "runhuman-mcp": "dist/index.js"
  },
  "files": [
    "dist",
    "README.md",
    ".env.example"
  ],
  "keywords": [
    "mcp",
    "model-context-protocol",
    "qa",
    "testing",
    "human-in-the-loop",
    "ai-agent",
    "claude",
    "anthropic",
    "qa-testing",
    "manual-testing"
  ],
  "author": "Runhuman <hey@runhuman.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/volter-ai/runhuman.git",
    "directory": "packages/mcp-server"
  },
  "homepage": "https://runhuman.com",
  "bugs": {
    "url": "https://github.com/volter-ai/runhuman/issues"
  },
  "license": "ISC",
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "1.29.0",
    "dotenv": "^17.2.3"
  },
  "devDependencies": {
    "@types/node": "^20.11.17",
    "chalk": "^5.6.2",
    "commander": "^12.1.0",
    "tsup": "^8.3.5",
    "tsx": "^4.7.1",
    "typescript": "^5.3.3",
    "vitest": "^3.2.4",
    "@runhuman/shared": "1.0.0"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsx watch src/index.ts",
    "dev-cli": "npx tsx dev-cli/index.ts",
    "start": "node dist/index.js",
    "type-check": "tsc --noEmit",
    "test": "vitest run",
    "test:locked": "../../scripts/with-test-lock.sh vitest run",
    "test:watch": "vitest",
    "test:legacy": "node test-simple.cjs",
    "test:all:legacy": "node test-all-tools.cjs",
    "test:routes": "node test-route-fix.cjs",
    "test:endpoints": "node test-api-endpoints.cjs",
    "test:ci": "npm run test:endpoints && npm run test:routes",
    "test:inspector": "npx @modelcontextprotocol/inspector node dist/index.js"
  }
}