package.json•1.21 kB
{
"name": "kubernetes-mcp",
"version": "0.1.0",
"description": "Kubernetes MCP server with progressive disclosure and CRD support",
"type": "module",
"main": "dist/server.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx watch src/server.ts",
"start": "node dist/server.js",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint \"src/**/*.{ts,tsx}\"",
"codegen": "tsx src/codegen/cli.ts",
"test": "vitest run",
"test:integration": "scripts/integration/run-kind-integration.sh",
"prepare": "husky"
},
"keywords": [
"kubernetes",
"mcp",
"agent",
"typescript"
],
"author": "",
"license": "MIT",
"dependencies": {
"@kubernetes/client-node": "^1.4.0",
"@modelcontextprotocol/sdk": "^1.22.0",
"yaml": "^2.8.1",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.50",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"eslint": "^9.39.1",
"husky": "^9.1.7",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.13"
}
}