{
  "name": "@openziti/ziti-mcp-server",
  "version": "0.13.0",
  "description": "OpenZiti Model Context Protocol (MCP) Server — A secure implementation of an MCP server that provides AI assistants with controlled access to the OpenZiti Controller's Management API through natural language. It enables AI-assisted Ziti Network management while enforcing best practices around security, least-privilege access, and zero-trust.",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "ziti-mcp-server": "dist/index.js"
  },
  "files": [
    "dist",
    "package.json",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "prebuild": "npm run format | grep -vF '(unchanged)' && npm run lint",
    "build": "rm -rf dist && tsc",
    "build-controller-edge-mgmt-client": "rm -rf ./src/utils/controller-edge-client && npx @hey-api/openapi-ts -f openapi-ts-edge.config.ts",
    "build-controller-fabric-mgmt-client": "rm -rf ./src/utils/controller-fabric-client && npx @hey-api/openapi-ts -f openapi-ts-fabric.config.ts",
    "build-controller-client": "npm run build-controller-edge-mgmt-client && npm run build-controller-fabric-mgmt-client",
    "postbuild": "shx chmod +x dist/*.js",
    "dev": "tsx src/index.ts run",
    "dev:debug": "DEBUG=ziti-mcp-server tsx src/index.ts run",
    "dev:inspect": "npx @modelcontextprotocol/inspector tsx src/index.ts run",
    "start": "node dist/index.js run",
    "start:debug": "DEBUG=ziti-mcp-server node dist/index.js run",
    "start:inspect": "npx @modelcontextprotocol/inspector node dist/index.js run",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "setup": "node utils/local-setup.js",
    "notice": "node utils/generate-notice.js",
    "lint": "eslint . --ext .js,.ts",
    "lint:fix": "eslint . --ext .js,.ts --fix",
    "format": "prettier --write \"**/*.{js,ts,json,md}\"",
    "format:check": "prettier --check \"**/*.{js,ts,json,md}\"",
    "typecheck": "tsc --noEmit"
  },
  "keywords": [
    "ziti",
    "openziti",
    "ai",
    "mcp",
    "model context protocol",
    "claude"
  ],
  "author": "NetFoundry",
  "license": "Apache-2.0",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.26.0",
    "chalk": "^5.4.1",
    "commander": "^13.1.0",
    "debug": "^4.4.0",
    "jwt-decode": "^4.0.0",
    "keytar": "^7.9.0",
    "open": "^10.1.0",
    "undici": "^7.22.0",
    "which": "^5.0.0"
  },
  "devDependencies": {
    "@eslint/js": "^9.23.0",
    "@hey-api/openapi-ts": "^0.87.4",
    "@types/debug": "^4.1.12",
    "@types/node": "^22.14.0",
    "@vitest/coverage-v8": "^3.1.1",
    "@vitest/ui": "^3.1.1",
    "eslint": "9.39.2",
    "eslint-config-prettier": "^10.1.8",
    "globals": "^16.0.0",
    "msw": "^2.7.3",
    "prettier": "^3.6.2",
    "shx": "^0.4.0",
    "tsx": "^4.19.3",
    "typescript": "^5.8.2",
    "typescript-eslint": "^8.29.0",
    "vitest": "^3.1.1"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/openziti/ziti-mcp-server.git"
  },
  "homepage": "https://github.com/openziti/ziti-mcp-server#readme",
  "publishConfig": {
    "access": "public"
  }
}
