Skip to content

Commit b25e9f9

Browse files
authored
feat: add Buildkite MCP server definition (#28)
* 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 * fix: update server definition (input type 'password' -> 'text' for BUILDKITE_API_TOKEN) * 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 <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 7765ab3 commit b25e9f9

1 file changed

Lines changed: 79 additions & 0 deletions

File tree

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.buildkite-mcp-docker",
4+
"name": "Buildkite (Docker)",
5+
"alias": "buildkite",
6+
"description": "Manage Buildkite pipelines, builds, jobs, and agents. Trigger builds, view logs, manage clusters, and monitor CI/CD workflows.",
7+
"icon": "https://avatars.githubusercontent.com/u/5055988?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"developer-tools"
11+
],
12+
"tags": [
13+
"buildkite",
14+
"ci-cd",
15+
"pipelines",
16+
"builds",
17+
"testing",
18+
"deployment"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "docker",
23+
"args": [
24+
"run",
25+
"--pull=always",
26+
"-q",
27+
"-i",
28+
"--rm",
29+
"-e",
30+
"BUILDKITE_API_TOKEN",
31+
"buildkite/mcp-server",
32+
"stdio"
33+
],
34+
"env": {
35+
"BUILDKITE_API_TOKEN": "${input:BUILDKITE_API_TOKEN}"
36+
},
37+
"metadata": {
38+
"inputs": [
39+
{
40+
"id": "BUILDKITE_API_TOKEN",
41+
"label": "Buildkite API Token",
42+
"description": "API access token for the Buildkite REST API.",
43+
"type": "text",
44+
"required": true,
45+
"secret": true,
46+
"placeholder": "bkua_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
47+
"obtain": {
48+
"url": "https://buildkite.com/user/api-access-tokens",
49+
"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",
50+
"button_label": "Create Token"
51+
}
52+
}
53+
]
54+
}
55+
},
56+
"auth": {
57+
"type": "api_key",
58+
"instructions": "Create an API access token at https://buildkite.com/user/api-access-tokens"
59+
},
60+
"contributor": {
61+
"name": "Buildkite",
62+
"github": "buildkite",
63+
"url": "https://buildkite.com"
64+
},
65+
"links": {
66+
"repository": "https://github.com/buildkite/buildkite-mcp-server",
67+
"homepage": "https://buildkite.com",
68+
"documentation": "https://buildkite.com/docs/apis/mcp-server"
69+
},
70+
"platforms": [
71+
"all"
72+
],
73+
"capabilities": {
74+
"tools": true,
75+
"resources": false,
76+
"prompts": false,
77+
"read_only_mode": false
78+
}
79+
}

0 commit comments

Comments
 (0)