Skip to content

Commit b2eb7a0

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for CONFLUENT_CLOUD_API_KEY; input type 'password' -> 'text' for CONFLUENT_CLOUD_API_SECRET; input type 'password' -> 'text' for KAFKA_API_KEY; input type 'password' -> 'text' for KAFKA_API_SECRET)
1 parent ad5208c commit b2eb7a0

1 file changed

Lines changed: 23 additions & 14 deletions

File tree

servers/io.confluent-mcp.json

Lines changed: 23 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,25 @@
66
"description": "Manage Confluent Cloud and Kafka resources. Create topics, produce and consume messages, run Flink SQL queries, and manage schemas.",
77
"icon": "https://avatars.githubusercontent.com/u/9439498?v=4",
88
"schema_version": "2.1",
9-
"categories": ["cloud", "database"],
10-
"tags": ["confluent", "kafka", "streaming", "flink", "events", "schema-registry"],
11-
9+
"categories": [
10+
"cloud",
11+
"database"
12+
],
13+
"tags": [
14+
"confluent",
15+
"kafka",
16+
"streaming",
17+
"flink",
18+
"events",
19+
"schema-registry"
20+
],
1221
"transport": {
1322
"type": "stdio",
1423
"command": "npx",
15-
"args": ["-y", "@confluentinc/mcp-confluent"],
24+
"args": [
25+
"-y",
26+
"@confluentinc/mcp-confluent"
27+
],
1628
"env": {
1729
"CONFLUENT_CLOUD_API_KEY": "${input:CONFLUENT_CLOUD_API_KEY}",
1830
"CONFLUENT_CLOUD_API_SECRET": "${input:CONFLUENT_CLOUD_API_SECRET}",
@@ -26,7 +38,7 @@
2638
"id": "CONFLUENT_CLOUD_API_KEY",
2739
"label": "Confluent Cloud API Key",
2840
"description": "Cloud API key for Confluent Cloud resource management.",
29-
"type": "password",
41+
"type": "text",
3042
"required": true,
3143
"secret": true,
3244
"placeholder": "XXXXXXXXXXXXXXXX",
@@ -40,7 +52,7 @@
4052
"id": "CONFLUENT_CLOUD_API_SECRET",
4153
"label": "Confluent Cloud API Secret",
4254
"description": "Cloud API secret paired with the Cloud API key.",
43-
"type": "password",
55+
"type": "text",
4456
"required": true,
4557
"secret": true,
4658
"placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
@@ -58,7 +70,7 @@
5870
"id": "KAFKA_API_KEY",
5971
"label": "Kafka Cluster API Key",
6072
"description": "API key specific to your Kafka cluster.",
61-
"type": "password",
73+
"type": "text",
6274
"required": true,
6375
"secret": true,
6476
"placeholder": "XXXXXXXXXXXXXXXX"
@@ -67,34 +79,31 @@
6779
"id": "KAFKA_API_SECRET",
6880
"label": "Kafka Cluster API Secret",
6981
"description": "API secret paired with the Kafka cluster API key.",
70-
"type": "password",
82+
"type": "text",
7183
"required": true,
7284
"secret": true,
7385
"placeholder": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
7486
}
7587
]
7688
}
7789
},
78-
7990
"auth": {
8091
"type": "api_key",
8192
"instructions": "Create API keys at https://confluent.cloud/settings/api-keys for both Cloud and Kafka cluster access"
8293
},
83-
8494
"contributor": {
8595
"name": "Confluent",
8696
"github": "confluentinc",
8797
"url": "https://www.confluent.io"
8898
},
89-
9099
"links": {
91100
"repository": "https://github.com/confluentinc/mcp-confluent",
92101
"homepage": "https://www.confluent.io",
93102
"documentation": "https://docs.confluent.io"
94103
},
95-
96-
"platforms": ["all"],
97-
104+
"platforms": [
105+
"all"
106+
],
98107
"capabilities": {
99108
"tools": true,
100109
"resources": false,

0 commit comments

Comments
 (0)