From f01c35648014459af90dfc141470008310c473d1 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 13:35:58 +0000 Subject: [PATCH 1/2] Add Koyeb MCP server definition Official Koyeb MCP server for managing serverless applications and services. Uses @koyeb/mcp-server npm package with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/com.koyeb-mcp.json | 64 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 servers/com.koyeb-mcp.json diff --git a/servers/com.koyeb-mcp.json b/servers/com.koyeb-mcp.json new file mode 100644 index 0000000..e2a2c59 --- /dev/null +++ b/servers/com.koyeb-mcp.json @@ -0,0 +1,64 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.koyeb-mcp", + "name": "Koyeb", + "alias": "koyeb", + "description": "Manage Koyeb serverless applications and services. Deploy apps, manage domains, view logs, and configure autoscaling.", + "icon": "https://avatars.githubusercontent.com/u/50234573?v=4", + "schema_version": "2.1", + "categories": ["cloud", "developer-tools"], + "tags": ["koyeb", "serverless", "deployment", "hosting", "paas"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "@koyeb/mcp-server"], + "env": { + "KOYEB_TOKEN": "${input:KOYEB_TOKEN}" + }, + "metadata": { + "inputs": [ + { + "id": "KOYEB_TOKEN", + "label": "Koyeb API Token", + "description": "API token for the Koyeb platform.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", + "obtain": { + "url": "https://app.koyeb.com/settings/api", + "instructions": "1. Go to app.koyeb.com > Account > API\n2. Click 'Generate API Token'\n3. Copy the generated token", + "button_label": "Generate Token" + } + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Generate an API token at https://app.koyeb.com/settings/api" + }, + + "contributor": { + "name": "Koyeb", + "github": "koyeb", + "url": "https://www.koyeb.com" + }, + + "links": { + "repository": "https://github.com/koyeb/mcp-server-koyeb", + "homepage": "https://www.koyeb.com", + "documentation": "https://www.koyeb.com/docs" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From f36d0e127307d68ad43ac8748a8c5b234b9fcb0f Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:09:31 +0800 Subject: [PATCH 2/2] fix: update server definition (input type 'password' -> 'text' for KOYEB_TOKEN) --- servers/com.koyeb-mcp.json | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/servers/com.koyeb-mcp.json b/servers/com.koyeb-mcp.json index e2a2c59..07b6fcc 100644 --- a/servers/com.koyeb-mcp.json +++ b/servers/com.koyeb-mcp.json @@ -6,13 +6,24 @@ "description": "Manage Koyeb serverless applications and services. Deploy apps, manage domains, view logs, and configure autoscaling.", "icon": "https://avatars.githubusercontent.com/u/50234573?v=4", "schema_version": "2.1", - "categories": ["cloud", "developer-tools"], - "tags": ["koyeb", "serverless", "deployment", "hosting", "paas"], - + "categories": [ + "cloud", + "developer-tools" + ], + "tags": [ + "koyeb", + "serverless", + "deployment", + "hosting", + "paas" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "@koyeb/mcp-server"], + "args": [ + "-y", + "@koyeb/mcp-server" + ], "env": { "KOYEB_TOKEN": "${input:KOYEB_TOKEN}" }, @@ -22,7 +33,7 @@ "id": "KOYEB_TOKEN", "label": "Koyeb API Token", "description": "API token for the Koyeb platform.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", @@ -35,26 +46,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Generate an API token at https://app.koyeb.com/settings/api" }, - "contributor": { "name": "Koyeb", "github": "koyeb", "url": "https://www.koyeb.com" }, - "links": { "repository": "https://github.com/koyeb/mcp-server-koyeb", "homepage": "https://www.koyeb.com", "documentation": "https://www.koyeb.com/docs" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false,