Skip to content

Commit ea95fac

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for KOYEB_TOKEN)
1 parent 9ece1a9 commit ea95fac

1 file changed

Lines changed: 19 additions & 11 deletions

File tree

servers/com.koyeb-mcp.json

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,24 @@
66
"description": "Manage Koyeb serverless applications and services. Deploy apps, manage domains, view logs, and configure autoscaling.",
77
"icon": "https://avatars.githubusercontent.com/u/50234573?v=4",
88
"schema_version": "2.1",
9-
"categories": ["cloud", "developer-tools"],
10-
"tags": ["koyeb", "serverless", "deployment", "hosting", "paas"],
11-
9+
"categories": [
10+
"cloud",
11+
"developer-tools"
12+
],
13+
"tags": [
14+
"koyeb",
15+
"serverless",
16+
"deployment",
17+
"hosting",
18+
"paas"
19+
],
1220
"transport": {
1321
"type": "stdio",
1422
"command": "npx",
15-
"args": ["-y", "@koyeb/mcp-server"],
23+
"args": [
24+
"-y",
25+
"@koyeb/mcp-server"
26+
],
1627
"env": {
1728
"KOYEB_TOKEN": "${input:KOYEB_TOKEN}"
1829
},
@@ -22,7 +33,7 @@
2233
"id": "KOYEB_TOKEN",
2334
"label": "Koyeb API Token",
2435
"description": "API token for the Koyeb platform.",
25-
"type": "password",
36+
"type": "text",
2637
"required": true,
2738
"secret": true,
2839
"placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
@@ -35,26 +46,23 @@
3546
]
3647
}
3748
},
38-
3949
"auth": {
4050
"type": "api_key",
4151
"instructions": "Generate an API token at https://app.koyeb.com/settings/api"
4252
},
43-
4453
"contributor": {
4554
"name": "Koyeb",
4655
"github": "koyeb",
4756
"url": "https://www.koyeb.com"
4857
},
49-
5058
"links": {
5159
"repository": "https://github.com/koyeb/mcp-server-koyeb",
5260
"homepage": "https://www.koyeb.com",
5361
"documentation": "https://www.koyeb.com/docs"
5462
},
55-
56-
"platforms": ["all"],
57-
63+
"platforms": [
64+
"all"
65+
],
5866
"capabilities": {
5967
"tools": true,
6068
"resources": false,

0 commit comments

Comments
 (0)