-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathserver.json
More file actions
93 lines (93 loc) · 3.04 KB
/
Copy pathserver.json
File metadata and controls
93 lines (93 loc) · 3.04 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.aiven/mcp",
"title": "Aiven MCP",
"description": "Provision PostgreSQL, manage Apache Kafka, and deploy apps with Aiven - all from your AI assistant.",
"repository": {
"url": "https://github.com/aiven-open/mcp-aiven",
"source": "github"
},
"version": "1.11.2",
"websiteUrl": "https://aiven.io/mcp",
"icons": [
{
"src": "https://aiven.io/favicons/favicon-16x16.png",
"mimeType": "image/png",
"sizes": ["16x16"]
},
{
"src": "https://aiven.io/favicons/favicon-32x32.png",
"mimeType": "image/png",
"sizes": ["32x32"]
},
{
"src": "https://aiven.io/favicons/favicon-64x64.png",
"mimeType": "image/png",
"sizes": ["64x64"]
},
{
"src": "https://aiven.io/favicons/apple-touch-icon.png",
"mimeType": "image/png",
"sizes": ["180x180"]
}
],
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "mcp-aiven",
"version": "1.11.2",
"runtimeHint": "npx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "AIVEN_TOKEN",
"description": "Aiven API token (create one at https://console.aiven.io/profile/tokens)",
"isRequired": true,
"isSecret": true,
"format": "string"
},
{
"name": "AIVEN_READ_ONLY",
"description": "Set to true to expose only read-only tools",
"format": "boolean"
},
{
"name": "AIVEN_SERVICES_SCOPE",
"description": "Comma-separated scopes to expose (e.g. pg, kafka, pg,kafka, or all). Valid: all, core, pg, kafka, application, integrations.",
"format": "string"
},
{
"name": "AIVEN_ALLOW_SECRETS",
"description": "Set to true to let the connection-info tool return live credentials instead of [REDACTED].",
"format": "boolean"
}
]
}
],
"remotes": [
{
"type": "streamable-http",
"url": "https://mcp.aiven.live/mcp?read_only={read_only}&services_scope={services_scope}&allow_secrets={allow_secrets}",
"variables": {
"read_only": {
"description": "Expose only read-only tools; all write operations are excluded.",
"default": "false",
"choices": ["true", "false"]
},
"services_scope": {
"description": "Comma-separated scopes to expose, e.g. pg, kafka, or pg,kafka. core (project/service discovery) is always included. all loads every tool and cannot be combined with other scopes.",
"default": "all",
"choices": ["all", "core", "pg", "kafka", "application", "integrations"]
},
"allow_secrets": {
"description": "Allow the connection-info tool to return live credentials instead of [REDACTED].",
"default": "false",
"choices": ["true", "false"]
}
}
}
]
}