{
  "name": "promptspeak-mcp-server",
  "version": "0.3.0",
  "mcpName": "io.github.chrbailey/promptspeak",
  "description": "Pre-execution governance for AI agents. Intercepts MCP tool calls before execution with deterministic blocking, human-in-the-loop holds, and behavioral drift detection.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./server": {
      "import": "./dist/server.js"
    }
  },
  "bin": {
    "promptspeak-mcp-server": "dist/server.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "keywords": [
    "mcp",
    "mcp-server",
    "ai-governance",
    "agent-governance",
    "ai-safety",
    "pre-execution-governance",
    "human-in-the-loop",
    "drift-detection",
    "model-context-protocol",
    "ai-agent-framework",
    "circuit-breaker",
    "tool-validation",
    "claude",
    "anthropic"
  ],
  "author": "Christopher Bailey <chris@erpaccess.com>",
  "license": "MIT",
  "homepage": "https://github.com/chrbailey/promptspeak-mcp-server#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/chrbailey/promptspeak-mcp-server.git"
  },
  "bugs": {
    "url": "https://github.com/chrbailey/promptspeak-mcp-server/issues"
  },
  "scripts": {
    "build": "tsc",
    "clean": "rm -rf dist",
    "prebuild": "rm -rf dist",
    "postbuild": "chmod +x dist/server.js",
    "start": "node dist/server.js",
    "dev": "tsx watch src/server.ts",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:stress": "vitest run tests/stress --reporter=verbose",
    "prepublishOnly": "npm run build && npm test",
    "seed": "tsx scripts/seed-database.ts",
    "seed:dry-run": "tsx scripts/seed-database.ts --dry-run",
    "seed:force": "tsx scripts/seed-database.ts --force"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.0",
    "@pinecone-database/pinecone": "^7.0.0",
    "better-sqlite3": "^12.5.0",
    "crypto-js": "^4.2.0",
    "dotenv": "^17.2.3",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.13",
    "@types/crypto-js": "^4.2.1",
    "@types/node": "^25.2.3",
    "docx": "^9.5.1",
    "tsx": "^4.7.0",
    "typescript": "^5.3.0",
    "vitest": "^4.0.16"
  },
  "engines": {
    "node": ">=20.0.0"
  }
}
