You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20Lines changed: 20 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -658,6 +658,19 @@ The following sets of tools are available (all are on by default):
658
658
659
659
<summary>Projects</summary>
660
660
661
+
-**add_project_item** - Add project item
662
+
-`item_id`: The numeric ID of the issue or pull request to add to the project. (number, required)
663
+
-`item_type`: The item's type, either issue or pull_request. (string, required)
664
+
-`owner`: 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. (string, required)
665
+
-`owner_type`: Owner type (string, required)
666
+
-`project_number`: The project's number. (number, required)
667
+
668
+
-**delete_project_item** - Delete project item
669
+
-`item_id`: The internal project item ID to delete from the project (not the issue or pull request ID). (number, required)
670
+
-`owner`: 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. (string, required)
671
+
-`owner_type`: Owner type (string, required)
672
+
-`project_number`: The project's number. (number, required)
673
+
661
674
-**get_project** - Get project
662
675
-`owner`: 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. (string, required)
663
676
-`owner_type`: Owner type (string, required)
@@ -694,6 +707,13 @@ The following sets of tools are available (all are on by default):
694
707
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
695
708
-`query`: Filter projects by a search query (matches title and description) (string, optional)
696
709
710
+
-**update_project_item** - Update project item
711
+
-`fields`: A list of field updates to apply. (array, required)
712
+
-`item_id`: The numeric ID of the project item to update (not the issue or pull request ID). (number, required)
713
+
-`owner`: 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. (string, required)
714
+
-`owner_type`: Owner type (string, required)
715
+
-`project_number`: The project's number. (number, required)
"description": "Add a specific Project item for a user or org",
7
+
"inputSchema": {
8
+
"properties": {
9
+
"item_id": {
10
+
"description": "The numeric ID of the issue or pull request to add to the project.",
11
+
"type": "number"
12
+
},
13
+
"item_type": {
14
+
"description": "The item's type, either issue or pull_request.",
15
+
"enum": [
16
+
"issue",
17
+
"pull_request"
18
+
],
19
+
"type": "string"
20
+
},
21
+
"owner": {
22
+
"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.",
"description": "Delete a specific Project item for a user or org",
7
+
"inputSchema": {
8
+
"properties": {
9
+
"item_id": {
10
+
"description": "The internal project item ID to delete from the project (not the issue or pull request ID).",
11
+
"type": "number"
12
+
},
13
+
"owner": {
14
+
"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.",
"description": "Update a specific Project item for a user or org",
7
+
"inputSchema": {
8
+
"properties": {
9
+
"fields": {
10
+
"description": "A list of field updates to apply.",
11
+
"type": "array"
12
+
},
13
+
"item_id": {
14
+
"description": "The numeric ID of the project item to update (not the issue or pull request ID).",
15
+
"type": "number"
16
+
},
17
+
"owner": {
18
+
"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.",
0 commit comments