Skip to content

Commit 04f8fb3

Browse files
claudeits-mash
authored andcommitted
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
1 parent 0217546 commit 04f8fb3

1 file changed

Lines changed: 64 additions & 0 deletions

File tree

servers/com.buildkite-mcp.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.buildkite-mcp",
4+
"name": "Buildkite",
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": ["developer-tools"],
10+
"tags": ["buildkite", "ci-cd", "pipelines", "builds", "testing", "deployment"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "docker",
15+
"args": ["run", "--pull=always", "-q", "-i", "--rm", "-e", "BUILDKITE_API_TOKEN", "buildkite/mcp-server", "stdio"],
16+
"env": {
17+
"BUILDKITE_API_TOKEN": "${input:BUILDKITE_API_TOKEN}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "BUILDKITE_API_TOKEN",
23+
"label": "Buildkite API Token",
24+
"description": "API access token for the Buildkite REST API.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "bkua_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://buildkite.com/user/api-access-tokens",
31+
"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",
32+
"button_label": "Create Token"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Create an API access token at https://buildkite.com/user/api-access-tokens"
42+
},
43+
44+
"contributor": {
45+
"name": "Buildkite",
46+
"github": "buildkite",
47+
"url": "https://buildkite.com"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/buildkite/buildkite-mcp-server",
52+
"homepage": "https://buildkite.com",
53+
"documentation": "https://buildkite.com/docs/apis/mcp-server"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": false
63+
}
64+
}

0 commit comments

Comments
 (0)