{
  "name": "@neat.is/mcp",
  "version": "0.9.19",
  "description": "NEAT MCP server: exposes graph queries to AI agents over stdio",
  "mcpName": "io.github.neat-technologies/neat",
  "license": "BUSL-1.1",
  "homepage": "https://neat.is",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/NEAT-Technologies/Neat.git",
    "directory": "packages/mcp"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=20"
  },
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./dist/index.cjs": "./dist/index.cjs"
  },
  "bin": {
    "neat-mcp": "./dist/index.cjs"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup",
    "prepublishOnly": "npm run build",
    "dev": "tsx watch src/index.ts",
    "start": "node dist/index.cjs",
    "test": "vitest run --passWithNoTests",
    "lint": "eslint src",
    "clean": "rm -rf dist .turbo"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.0",
    "@neat.is/types": "^0.9.19",
    "zod": "^3.23.8"
  },
  "devDependencies": {
    "@types/node": "^20.14.0",
    "tsup": "^8.3.0",
    "tsx": "^4.19.0",
    "typescript": "^5.6.0",
    "vitest": "^2.1.0"
  }
}
