forked from github/github-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_label.snap
More file actions
38 lines (38 loc) · 878 Bytes
/
create_label.snap
File metadata and controls
38 lines (38 loc) · 878 Bytes
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
{
"annotations": {
"title": "Create a label in a repository."
},
"description": "Create a label in a repository.",
"inputSchema": {
"type": "object",
"properties": {
"color": {
"type": "string",
"description": "Label color as 6-character hex code without '#' prefix (e.g., 'f29513')."
},
"description": {
"type": "string",
"description": "Label description text (optional)."
},
"name": {
"type": "string",
"description": "Label name."
},
"owner": {
"type": "string",
"description": "Repository owner (username or organization name)"
},
"repo": {
"type": "string",
"description": "Repository name"
}
},
"required": [
"owner",
"repo",
"name",
"color"
]
},
"name": "create_label"
}