forked from github/github-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdelete_project_item.snap
More file actions
39 lines (39 loc) · 1.01 KB
/
delete_project_item.snap
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"annotations": {
"destructiveHint": true,
"title": "Delete project item"
},
"description": "Delete a specific Project item for a user or org",
"inputSchema": {
"type": "object",
"required": [
"owner_type",
"owner",
"project_number",
"item_id"
],
"properties": {
"item_id": {
"type": "number",
"description": "The internal project item ID to delete from the project (not the issue or pull request ID)."
},
"owner": {
"type": "string",
"description": "If owner_type == user it is the handle for the GitHub user account. If owner_type == org it is the name of the organization. The name is not case sensitive."
},
"owner_type": {
"type": "string",
"description": "Owner type",
"enum": [
"user",
"org"
]
},
"project_number": {
"type": "number",
"description": "The project's number."
}
}
},
"name": "delete_project_item"
}