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
+51-3Lines changed: 51 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -671,14 +671,62 @@ The following sets of tools are available (all are on by default):
671
671
672
672
<summary>Projects</summary>
673
673
674
+
-**add_project_item** - Add project item
675
+
-`item_id`: The numeric ID of the issue or pull request to add to the project. (number, required)
676
+
-`item_type`: The item's type, either issue or pull_request. (string, required)
677
+
-`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)
678
+
-`owner_type`: Owner type (string, required)
679
+
-`project_number`: The project's number. (number, required)
680
+
681
+
-**delete_project_item** - Delete project item
682
+
-`item_id`: The internal project item ID to delete from the project (not the issue or pull request ID). (number, required)
683
+
-`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)
684
+
-`owner_type`: Owner type (string, required)
685
+
-`project_number`: The project's number. (number, required)
686
+
687
+
-**get_project** - Get project
688
+
-`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)
689
+
-`owner_type`: Owner type (string, required)
690
+
-`project_number`: The project's number (number, required)
691
+
692
+
-**get_project_field** - Get project field
693
+
-`field_id`: The field's id. (number, required)
694
+
-`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)
695
+
-`owner_type`: Owner type (string, required)
696
+
-`project_number`: The project's number. (number, required)
697
+
698
+
-**get_project_item** - Get project item
699
+
-`item_id`: The item's ID. (number, required)
700
+
-`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)
701
+
-`owner_type`: Owner type (string, required)
702
+
-`project_number`: The project's number. (number, required)
703
+
704
+
-**list_project_fields** - List project fields
705
+
-`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)
706
+
-`owner_type`: Owner type (string, required)
707
+
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
708
+
-`project_number`: The project's number. (number, required)
709
+
710
+
-**list_project_items** - List project items
711
+
-`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)
712
+
-`owner_type`: Owner type (string, required)
713
+
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
714
+
-`project_number`: The project's number. (number, required)
715
+
-`query`: Search query to filter items (string, optional)
716
+
674
717
-**list_projects** - List projects
675
-
-`after`: Cursor for items after (forward pagination) (string, optional)
676
-
-`before`: Cursor for items before (backwards pagination) (string, optional)
677
-
-`owner`: If owner_type == user it is the handle for the GitHub user account. If owner_type == organization it is the name of the organization. The name is not case sensitive. (string, required)
718
+
-`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)
678
719
-`owner_type`: Owner type (string, required)
679
720
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
680
721
-`query`: Filter projects by a search query (matches title and description) (string, optional)
681
722
723
+
-**update_project_item** - Update project item
724
+
-`fields`: A list of field updates to apply. (array, required)
725
+
-`item_id`: The numeric ID of the project item to update (not the issue or pull request ID). (number, required)
726
+
-`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)
727
+
-`owner_type`: Owner type (string, required)
728
+
-`project_number`: The project's number. (number, required)
0 commit comments