-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 3.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"type": "module",
"bin": {
"portkey-admin-mcp": "build/index.js",
"portkey-admin-mcp-http": "build/server.js"
},
"scripts": {
"build": "esbuild src/index.ts src/server.ts --bundle --platform=node --target=node24 --format=esm --outdir=build --packages=external && chmod 755 build/index.js build/server.js",
"typecheck": "tsc --noEmit",
"typecheck:tests": "tsc --project tsconfig.tests.json --noEmit",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"test": "tsx --test tests/config.test.ts tests/security.test.ts tests/contract.test.ts tests/contract-extended.test.ts tests/unit.test.ts tests/http-server.test.ts tests/tools-observability.test.ts tests/tools-catalog.test.ts tests/tools-platform.test.ts tests/tools-keys.test.ts tests/tools-users.test.ts tests/tools-analytics.test.ts tests/current-api.test.ts tests/release-readiness.test.ts tests/auth-clerk.test.ts",
"dev": "tsx --watch src/index.ts",
"dev:http": "tsx --watch src/server.ts",
"smoke": "tsx tests/smoke.ts",
"test:http": "bash scripts/test-mcp-http.sh",
"test:e2e": "tsx --test tests/mcp-e2e.test.ts",
"test:contract": "tsx --test tests/contract.test.ts",
"test:redis": "tsx --test tests/redis-integration.test.ts",
"record:fixtures": "tsx tests/fixtures/record.ts",
"verify:tool-quality": "node scripts/check-tool-definition-quality.mjs",
"verify:readme-tools": "node scripts/verify-readme-tools.mjs",
"knip": "knip",
"ci": "npm run lint && npm run knip && npm run typecheck && npm run typecheck:tests && npm run test && npm run build && npm run verify:tool-quality && npm run test:e2e && npm run verify:readme-tools",
"start:http": "node build/server.js",
"generate:lobehub-tools": "npm run build && node scripts/generate-lobehub-tools.mjs && biome format --write lhm.plugin.json",
"update:lobehub": "npm run generate:lobehub-tools && npx -y @lobehub/market-cli plugin update --dir \"$PWD\"",
"publish:lobehub": "npm run update:lobehub",
"prepare": "[ -n \"$CI\" ] || [ -f /.dockerenv ] || [ ! -d .git ] || lefthook install",
"prepublishOnly": "npm run ci"
},
"engines": {
"node": ">=24"
},
"packageManager": "npm@12.0.2",
"files": [
"build",
"ENDPOINTS.md",
"docs/PRISMA_AIRS_INTEROPERABILITY.md",
"docs/VERCEL_DEPLOYMENT.md"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"cors": "^2.8.6",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"helmet": "^8.3.0",
"jose": "^6.2.2",
"redis": "^6.1.0",
"zod": "^4.3.6"
},
"name": "portkey-admin-mcp",
"mcpName": "io.github.CodesWhat/portkey-admin-mcp",
"version": "0.9.0",
"main": "build/index.js",
"keywords": [
"mcp",
"model-context-protocol",
"portkey",
"llm",
"ai",
"claude",
"admin-api",
"prompts",
"observability",
"gateway",
"prisma-airs",
"palo-alto-networks",
"anthropic"
],
"author": "Scott Benson",
"license": "MIT",
"description": "Portkey Admin API MCP server with current control-plane coverage and Prisma AIRS interoperability guidance",
"repository": {
"type": "git",
"url": "git+https://github.com/CodesWhat/portkey-admin-mcp.git"
},
"homepage": "https://github.com/CodesWhat/portkey-admin-mcp#readme",
"bugs": {
"url": "https://github.com/CodesWhat/portkey-admin-mcp/issues"
},
"devDependencies": {
"@biomejs/biome": "2.5.6",
"@types/cors": "2.8.19",
"@types/express": "5.0.6",
"@types/node": "24.13.3",
"dotenv": "17.4.2",
"esbuild": "0.28.1",
"knip": "6.29.0",
"lefthook": "2.1.10",
"tsx": "4.23.1",
"typescript": "7.0.2"
}
}