-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcom.circleci-mcp-docker.json
More file actions
72 lines (72 loc) · 2.07 KB
/
Copy pathcom.circleci-mcp-docker.json
File metadata and controls
72 lines (72 loc) · 2.07 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
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.circleci-mcp-docker",
"name": "CircleCI (Docker)",
"alias": "circleci-docker",
"description": "Manage CircleCI pipelines, jobs, and workflows via Docker. Trigger builds, view job logs, analyze test results, and debug failed pipelines.",
"icon": "https://avatars.githubusercontent.com/u/26607840?v=4",
"schema_version": "2.1",
"categories": [
"developer-tools"
],
"tags": [
"circleci",
"ci-cd",
"pipelines",
"builds",
"docker"
],
"transport": {
"type": "stdio",
"command": "docker",
"args": [
"run", "-i", "--rm",
"-e", "CIRCLECI_TOKEN",
"circleci/mcp-server-circleci"
],
"env": {
"CIRCLECI_TOKEN": "${input:CIRCLECI_TOKEN}"
},
"metadata": {
"inputs": [
{
"id": "CIRCLECI_TOKEN",
"label": "CircleCI API Token",
"description": "Personal API token for CircleCI.",
"type": "text",
"required": true,
"secret": true,
"placeholder": "CCIPAT_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"obtain": {
"url": "https://app.circleci.com/settings/user/tokens",
"instructions": "1. Go to app.circleci.com > User Settings > Personal API Tokens\n2. Click 'Create New Token'\n3. Name your token and click 'Add API Token'\n4. Copy the token",
"button_label": "Create Token"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Create a Personal API Token at https://app.circleci.com/settings/user/tokens"
},
"contributor": {
"name": "CircleCI",
"github": "CircleCI-Public",
"url": "https://circleci.com"
},
"links": {
"repository": "https://github.com/CircleCI-Public/mcp-server-circleci",
"homepage": "https://circleci.com",
"documentation": "https://circleci.com/docs/guides/toolkit/using-the-circleci-mcp-server/"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
}
}