From 59a92853e7d03ac9d3b651b82dedc7eccee31c82 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 13:25:50 +0000 Subject: [PATCH 1/3] Add Buildkite MCP server definition Official Buildkite MCP server for CI/CD pipeline management. Trigger builds, view logs, and manage agents. Uses Docker with buildkite/mcp-server image. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/com.buildkite-mcp.json | 64 ++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 servers/com.buildkite-mcp.json diff --git a/servers/com.buildkite-mcp.json b/servers/com.buildkite-mcp.json new file mode 100644 index 0000000..4b9106d --- /dev/null +++ b/servers/com.buildkite-mcp.json @@ -0,0 +1,64 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.buildkite-mcp", + "name": "Buildkite", + "alias": "buildkite", + "description": "Manage Buildkite pipelines, builds, jobs, and agents. Trigger builds, view logs, manage clusters, and monitor CI/CD workflows.", + "icon": "https://avatars.githubusercontent.com/u/5055988?v=4", + "schema_version": "2.1", + "categories": ["developer-tools"], + "tags": ["buildkite", "ci-cd", "pipelines", "builds", "testing", "deployment"], + + "transport": { + "type": "stdio", + "command": "docker", + "args": ["run", "--pull=always", "-q", "-i", "--rm", "-e", "BUILDKITE_API_TOKEN", "buildkite/mcp-server", "stdio"], + "env": { + "BUILDKITE_API_TOKEN": "${input:BUILDKITE_API_TOKEN}" + }, + "metadata": { + "inputs": [ + { + "id": "BUILDKITE_API_TOKEN", + "label": "Buildkite API Token", + "description": "API access token for the Buildkite REST API.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "bkua_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "obtain": { + "url": "https://buildkite.com/user/api-access-tokens", + "instructions": "1. Go to buildkite.com > Personal Settings > API Access Tokens\n2. Click 'New API Access Token'\n3. Configure organization access and scopes\n4. Click 'Create Token' and copy it", + "button_label": "Create Token" + } + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Create an API access token at https://buildkite.com/user/api-access-tokens" + }, + + "contributor": { + "name": "Buildkite", + "github": "buildkite", + "url": "https://buildkite.com" + }, + + "links": { + "repository": "https://github.com/buildkite/buildkite-mcp-server", + "homepage": "https://buildkite.com", + "documentation": "https://buildkite.com/docs/apis/mcp-server" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 3b9d62132d266378c3a629535292737e4c53ccb4 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:08:25 +0800 Subject: [PATCH 2/3] fix: update server definition (input type 'password' -> 'text' for BUILDKITE_API_TOKEN) --- servers/com.buildkite-mcp.json | 37 ++++++++++++++++++++++++---------- 1 file changed, 26 insertions(+), 11 deletions(-) diff --git a/servers/com.buildkite-mcp.json b/servers/com.buildkite-mcp.json index 4b9106d..2daae3e 100644 --- a/servers/com.buildkite-mcp.json +++ b/servers/com.buildkite-mcp.json @@ -6,13 +6,31 @@ "description": "Manage Buildkite pipelines, builds, jobs, and agents. Trigger builds, view logs, manage clusters, and monitor CI/CD workflows.", "icon": "https://avatars.githubusercontent.com/u/5055988?v=4", "schema_version": "2.1", - "categories": ["developer-tools"], - "tags": ["buildkite", "ci-cd", "pipelines", "builds", "testing", "deployment"], - + "categories": [ + "developer-tools" + ], + "tags": [ + "buildkite", + "ci-cd", + "pipelines", + "builds", + "testing", + "deployment" + ], "transport": { "type": "stdio", "command": "docker", - "args": ["run", "--pull=always", "-q", "-i", "--rm", "-e", "BUILDKITE_API_TOKEN", "buildkite/mcp-server", "stdio"], + "args": [ + "run", + "--pull=always", + "-q", + "-i", + "--rm", + "-e", + "BUILDKITE_API_TOKEN", + "buildkite/mcp-server", + "stdio" + ], "env": { "BUILDKITE_API_TOKEN": "${input:BUILDKITE_API_TOKEN}" }, @@ -22,7 +40,7 @@ "id": "BUILDKITE_API_TOKEN", "label": "Buildkite API Token", "description": "API access token for the Buildkite REST API.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "bkua_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", @@ -35,26 +53,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Create an API access token at https://buildkite.com/user/api-access-tokens" }, - "contributor": { "name": "Buildkite", "github": "buildkite", "url": "https://buildkite.com" }, - "links": { "repository": "https://github.com/buildkite/buildkite-mcp-server", "homepage": "https://buildkite.com", "documentation": "https://buildkite.com/docs/apis/mcp-server" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From 9ac212d9613d545662c096cf7c9b744787ec2487 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:43:58 +0800 Subject: [PATCH 3/3] fix: rename server files with transport suffix - com.buildkite-mcp.json -> com.buildkite-mcp-docker.json (id: com.buildkite-mcp-docker) Signed-off-by: Mohammod Al Amin Ashik --- .../{com.buildkite-mcp.json => com.buildkite-mcp-docker.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{com.buildkite-mcp.json => com.buildkite-mcp-docker.json} (96%) diff --git a/servers/com.buildkite-mcp.json b/servers/com.buildkite-mcp-docker.json similarity index 96% rename from servers/com.buildkite-mcp.json rename to servers/com.buildkite-mcp-docker.json index 2daae3e..39cdc27 100644 --- a/servers/com.buildkite-mcp.json +++ b/servers/com.buildkite-mcp-docker.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "com.buildkite-mcp", - "name": "Buildkite", + "id": "com.buildkite-mcp-docker", + "name": "Buildkite (Docker)", "alias": "buildkite", "description": "Manage Buildkite pipelines, builds, jobs, and agents. Trigger builds, view logs, manage clusters, and monitor CI/CD workflows.", "icon": "https://avatars.githubusercontent.com/u/5055988?v=4",