portkey-admin-mcp 0.1.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "type": "module",
3
+ "bin": {
4
+ "portkey-admin-mcp": "./build/index.js",
5
+ "portkey-admin-mcp-http": "./build/server.js"
6
+ },
7
+ "scripts": {
8
+ "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",
9
+ "typecheck": "tsc --noEmit",
10
+ "lint": "biome lint .",
11
+ "format": "biome format --write .",
12
+ "check": "biome check --write .",
13
+ "test": "echo \"No tests specified\" && exit 0",
14
+ "smoke": "tsx tests/smoke.ts",
15
+ "start:http": "node build/server.js"
16
+ },
17
+ "files": [
18
+ "build"
19
+ ],
20
+ "dependencies": {
21
+ "@modelcontextprotocol/sdk": "^1.25.1",
22
+ "cors": "^2.8.5",
23
+ "dotenv": "^17.2.3",
24
+ "express": "^5.2.1",
25
+ "undici": "^7.16.0",
26
+ "zod": "^4.3.2"
27
+ },
28
+ "name": "portkey-admin-mcp",
29
+ "version": "0.1.0-beta.1",
30
+ "main": "build/index.js",
31
+ "keywords": [
32
+ "mcp",
33
+ "model-context-protocol",
34
+ "portkey",
35
+ "llm",
36
+ "ai",
37
+ "claude",
38
+ "admin-api",
39
+ "prompts",
40
+ "observability",
41
+ "gateway",
42
+ "anthropic"
43
+ ],
44
+ "author": "Scott Benson",
45
+ "license": "MIT",
46
+ "description": "Full Portkey Admin API MCP server",
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "https://github.com/s-b-e-n-s-o-n/portkey-admin-mcp.git"
50
+ },
51
+ "homepage": "https://github.com/s-b-e-n-s-o-n/portkey-admin-mcp#readme",
52
+ "bugs": {
53
+ "url": "https://github.com/s-b-e-n-s-o-n/portkey-admin-mcp/issues"
54
+ },
55
+ "devDependencies": {
56
+ "@biomejs/biome": "^2.0.0",
57
+ "@types/cors": "^2.8.17",
58
+ "@types/express": "^5.0.6",
59
+ "@types/node": "^24.0.0",
60
+ "esbuild": "^0.27.2",
61
+ "tsx": "^4.21.0",
62
+ "typescript": "^5.9.3"
63
+ }
64
+ }