-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.29 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
{
"name": "mcp-aiven",
"version": "1.16.0",
"mcpName": "io.aiven/mcp",
"description": "MCP server for Aiven cloud data platform - manage PostgreSQL, Kafka, and other services",
"type": "module",
"main": "dist/index.js",
"keywords": [
"mcp",
"aiven",
"postgresql",
"kafka",
"cloud",
"database",
"model-context-protocol"
],
"author": "Aiven",
"license": "Apache-2.0",
"files": [
"dist",
"src/manifests",
"generator/schemas",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Aiven-Open/mcp-aiven.git"
},
"bugs": "https://github.com/Aiven-Open/mcp-aiven/issues",
"homepage": "https://github.com/Aiven-Open/mcp-aiven/blob/main/README.md",
"optionalDependencies": {
"@sentry/node": "^9.46.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"express": "^5.2.1",
"google-auth-library": "^10.5.0",
"express-rate-limit": "^8.3.2",
"libpg-query": "^17.7.3",
"openapi-fetch": "^0.17.0",
"yaml": "^2.4.0",
"zod": "^3.23.8"
},
"bin": {
"mcp-aiven": "dist/index.js"
},
"scripts": {
"generate": "tsx generator/src/cli.ts",
"build": "tsc && rm -rf dist/manifests && cp -r src/manifests dist/manifests",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"test": "vitest",
"test:eval": "vitest run tests/eval",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm generate:api-types && pnpm generate && pnpm build && pnpm test --run",
"generate:api-types": "openapi-typescript https://api.aiven.io/doc/openapi.json -o src/generated/aiven-api.ts"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/express": "^5.0.6",
"@types/node": "^22.10.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-security": "^3.0.0",
"globals": "^15.0.0",
"lint-staged": "^15.0.0",
"openapi-typescript": "^7.13.0",
"prettier": "^3.2.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.0.0",
"vitest": "^3.2.6"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.28.2"
}