Comprehensive MCP server management with kubectl-style CLI. Key features in this release: - Declarative YAML apply/get round-trip with project cloning support - Gated sessions with prompt intelligence for Claude - Interactive MCP console with traffic inspector - Persistent STDIO connections for containerized servers - RBAC with name-scoped bindings - Shell completions (fish + bash) auto-generated - Rate-limit retry with exponential backoff in apply - Project-scoped prompt management - Credential scrubbing from git history Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
32 lines
678 B
JSON
32 lines
678 B
JSON
{
|
|
"name": "@mcpctl/db",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"clean": "rimraf dist",
|
|
"test": "vitest",
|
|
"test:run": "vitest run",
|
|
"db:generate": "prisma generate",
|
|
"db:push": "prisma db push",
|
|
"db:migrate": "prisma migrate dev",
|
|
"db:seed": "tsx src/seed/index.ts"
|
|
},
|
|
"dependencies": {
|
|
"@prisma/client": "^6.0.0",
|
|
"@mcpctl/shared": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"prisma": "^6.0.0"
|
|
}
|
|
}
|