Skip to content

Commit c6ba780

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for BUILDKITE_API_TOKEN)
1 parent 04f8fb3 commit c6ba780

1 file changed

Lines changed: 26 additions & 11 deletions

File tree

servers/com.buildkite-mcp.json

Lines changed: 26 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,31 @@
66
"description": "Manage Buildkite pipelines, builds, jobs, and agents. Trigger builds, view logs, manage clusters, and monitor CI/CD workflows.",
77
"icon": "https://avatars.githubusercontent.com/u/5055988?v=4",
88
"schema_version": "2.1",
9-
"categories": ["developer-tools"],
10-
"tags": ["buildkite", "ci-cd", "pipelines", "builds", "testing", "deployment"],
11-
9+
"categories": [
10+
"developer-tools"
11+
],
12+
"tags": [
13+
"buildkite",
14+
"ci-cd",
15+
"pipelines",
16+
"builds",
17+
"testing",
18+
"deployment"
19+
],
1220
"transport": {
1321
"type": "stdio",
1422
"command": "docker",
15-
"args": ["run", "--pull=always", "-q", "-i", "--rm", "-e", "BUILDKITE_API_TOKEN", "buildkite/mcp-server", "stdio"],
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+
],
1634
"env": {
1735
"BUILDKITE_API_TOKEN": "${input:BUILDKITE_API_TOKEN}"
1836
},
@@ -22,7 +40,7 @@
2240
"id": "BUILDKITE_API_TOKEN",
2341
"label": "Buildkite API Token",
2442
"description": "API access token for the Buildkite REST API.",
25-
"type": "password",
43+
"type": "text",
2644
"required": true,
2745
"secret": true,
2846
"placeholder": "bkua_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
@@ -35,26 +53,23 @@
3553
]
3654
}
3755
},
38-
3956
"auth": {
4057
"type": "api_key",
4158
"instructions": "Create an API access token at https://buildkite.com/user/api-access-tokens"
4259
},
43-
4460
"contributor": {
4561
"name": "Buildkite",
4662
"github": "buildkite",
4763
"url": "https://buildkite.com"
4864
},
49-
5065
"links": {
5166
"repository": "https://github.com/buildkite/buildkite-mcp-server",
5267
"homepage": "https://buildkite.com",
5368
"documentation": "https://buildkite.com/docs/apis/mcp-server"
5469
},
55-
56-
"platforms": ["all"],
57-
70+
"platforms": [
71+
"all"
72+
],
5873
"capabilities": {
5974
"tools": true,
6075
"resources": false,

0 commit comments

Comments
 (0)