-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathschema.json
More file actions
241 lines (241 loc) · 7.38 KB
/
schema.json
File metadata and controls
241 lines (241 loc) · 7.38 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
{
"functions": [
{
"name": "mcp_buildkite_list_organizations",
"description": "List all organizations the authenticated user has access to",
"parameters": {
"type": "object",
"properties": {}
}
},
{
"name": "mcp_buildkite_list_pipelines",
"description": "List all pipelines in an organization",
"parameters": {
"type": "object",
"required": ["organization"],
"properties": {
"organization": {
"type": "string",
"description": "The Buildkite organization slug"
}
}
}
},
{
"name": "mcp_buildkite_list_builds",
"description": "List builds from a Buildkite pipeline with optional filtering",
"parameters": {
"type": "object",
"required": ["organization", "pipeline"],
"properties": {
"organization": {
"type": "string",
"description": "The Buildkite organization slug"
},
"pipeline": {
"type": "string",
"description": "The Buildkite pipeline slug"
},
"per_page": {
"type": "number",
"description": "Number of builds to return per page (default: 10)",
"default": 10
},
"page": {
"type": "number",
"description": "Page number for pagination (default: 1)",
"default": 1
},
"branch": {
"type": "string",
"description": "Filter builds by branch"
},
"state": {
"type": "string",
"description": "Filter builds by state (running, scheduled, passed, failed, canceled, skipped, not_run)",
"enum": ["running", "scheduled", "passed", "failed", "canceled", "skipped", "not_run"]
}
}
}
},
{
"name": "mcp_buildkite_get_build",
"description": "Get detailed information about a specific build",
"parameters": {
"type": "object",
"required": ["organization", "pipeline", "build_number"],
"properties": {
"organization": {
"type": "string",
"description": "The Buildkite organization slug"
},
"pipeline": {
"type": "string",
"description": "The Buildkite pipeline slug"
},
"build_number": {
"type": "number",
"description": "The build number to retrieve"
}
}
}
},
{
"name": "mcp_buildkite_list_jobs",
"description": "List all jobs from a build regardless of status",
"parameters": {
"type": "object",
"required": ["organization", "pipeline", "build_number"],
"properties": {
"organization": {
"type": "string",
"description": "The Buildkite organization slug"
},
"pipeline": {
"type": "string",
"description": "The Buildkite pipeline slug"
},
"build_number": {
"type": "number",
"description": "The build number to retrieve jobs from"
}
}
}
},
{
"name": "mcp_buildkite_list_failed_jobs",
"description": "List only failed jobs from a build for quick failure analysis",
"parameters": {
"type": "object",
"required": ["organization", "pipeline", "build_number"],
"properties": {
"organization": {
"type": "string",
"description": "The Buildkite organization slug"
},
"pipeline": {
"type": "string",
"description": "The Buildkite pipeline slug"
},
"build_number": {
"type": "number",
"description": "The build number to retrieve failed jobs from"
}
}
}
},
{
"name": "mcp_buildkite_get_job_log",
"description": "Get the full console output logs for a specific job",
"parameters": {
"type": "object",
"required": ["organization", "pipeline", "build_number", "job_id"],
"properties": {
"organization": {
"type": "string",
"description": "The Buildkite organization slug"
},
"pipeline": {
"type": "string",
"description": "The Buildkite pipeline slug"
},
"build_number": {
"type": "number",
"description": "The build number"
},
"job_id": {
"type": "string",
"description": "The job ID to retrieve logs from"
}
}
}
},
{
"name": "mcp_buildkite_retry_job",
"description": "Retry a specific failed job in a build",
"parameters": {
"type": "object",
"required": ["organization", "pipeline", "build_number", "job_id"],
"properties": {
"organization": {
"type": "string",
"description": "The Buildkite organization slug"
},
"pipeline": {
"type": "string",
"description": "The Buildkite pipeline slug"
},
"build_number": {
"type": "number",
"description": "The build number containing the job"
},
"job_id": {
"type": "string",
"description": "The job ID to retry"
}
}
}
},
{
"name": "mcp_buildkite_list_pipeline_build_failures",
"description": "List build failures from a specific pipeline for quick failure analysis",
"parameters": {
"type": "object",
"required": ["organization", "pipeline"],
"properties": {
"organization": {
"type": "string",
"description": "The Buildkite organization slug"
},
"pipeline": {
"type": "string",
"description": "The Buildkite pipeline slug"
},
"state": {
"type": "string",
"description": "Filter builds by state (default: finished)",
"enum": ["running", "scheduled", "passed", "failed", "canceled", "skipped", "not_run", "finished", "broken"],
"default": "finished"
},
"per_page": {
"type": "number",
"description": "Number of builds to return per page (default: 20)",
"default": 20
},
"page": {
"type": "number",
"description": "Page number for pagination (default: 1)",
"default": 1
}
}
}
},
{
"name": "mcp_buildkite_list_job_spec_failures",
"description": "Extract test spec failures from a specific job in a pipeline",
"parameters": {
"type": "object",
"required": ["organization", "pipeline", "build_number", "job_id"],
"properties": {
"organization": {
"type": "string",
"description": "The Buildkite organization slug"
},
"pipeline": {
"type": "string",
"description": "The Buildkite pipeline slug"
},
"build_number": {
"type": "number",
"description": "The build number to analyze"
},
"job_id": {
"type": "string",
"description": "The job ID to extract spec failures from"
}
}
}
}
]
}