-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcom.buildkite-mcp-docker.json
More file actions
79 lines (79 loc) · 2.15 KB
/
Copy pathcom.buildkite-mcp-docker.json
File metadata and controls
79 lines (79 loc) · 2.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"$schema": "../schemas/server-definition.schema.json",
"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",
"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": "text",
"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
}
}