{
  "name": "@grackle-ai/mcp",
  "version": "0.195.0",
  "description": "MCP (Model Context Protocol) server for Grackle — translates MCP tool calls to ConnectRPC",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/nick-pape/grackle.git",
    "directory": "packages/mcp"
  },
  "keywords": [
    "grackle",
    "mcp",
    "model-context-protocol",
    "ai-agents"
  ],
  "homepage": "https://github.com/nick-pape/grackle#readme",
  "bugs": {
    "url": "https://github.com/nick-pape/grackle/issues"
  },
  "engines": {
    "node": ">=22.0.0 <24.0.0"
  },
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "grackle-mcp": "dist/standalone.js"
  },
  "files": [
    "dist/"
  ],
  "dependencies": {
    "@bufbuild/protobuf": "^2.5.0",
    "@connectrpc/connect": "^2.0.0",
    "@connectrpc/connect-node": "^2.0.0",
    "@modelcontextprotocol/ext-apps": "^1.7.2",
    "@modelcontextprotocol/sdk": "^1.29.0",
    "zod": "^4.3.0",
    "@grackle-ai/common": "0.195.0",
    "@grackle-ai/auth": "0.195.0"
  },
  "devDependencies": {
    "@rushstack/heft": "1.2.7",
    "@types/node": "^22.0.0",
    "@vitest/coverage-v8": "^4.1.0",
    "vitest": "^4.1.0",
    "@vitest/spy": "^4.1.0",
    "@grackle-ai/heft-rig": "0.0.1"
  },
  "scripts": {
    "build": "heft build --clean",
    "start": "node dist/standalone.js",
    "test": "vitest run",
    "clean": "heft clean",
    "_phase:build": "heft run --only build -- --clean",
    "_phase:test": "vitest run --coverage"
  }
}