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
+33-1Lines changed: 33 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -658,16 +658,48 @@ 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)
664
677
-`project_number`: The project's number (number, required)
665
678
679
+
-**get_project_field** - Get project field
680
+
-`field_id`: The field's id. (number, required)
681
+
-`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)
682
+
-`owner_type`: Owner type (string, required)
683
+
-`project_number`: The project's number. (number, required)
684
+
685
+
-**get_project_item** - Get project item
686
+
-`item_id`: The item's ID. (number, required)
687
+
-`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)
688
+
-`owner_type`: Owner type (string, required)
689
+
-`project_number`: The project's number. (number, required)
690
+
666
691
-**list_project_fields** - List project fields
667
692
-`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)
668
693
-`owner_type`: Owner type (string, required)
669
694
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
670
-
-`projectNumber`: The project's number. (string, required)
695
+
-`project_number`: The project's number. (number, required)
696
+
697
+
-**list_project_items** - List project items
698
+
-`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)
699
+
-`owner_type`: Owner type (string, required)
700
+
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
701
+
-`project_number`: The project's number. (number, required)
702
+
-`query`: Search query to filter items (string, optional)
671
703
672
704
-**list_projects** - List projects
673
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)
"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": "Get Project field for a user or org",
7
+
"inputSchema": {
8
+
"properties": {
9
+
"field_id": {
10
+
"description": "The field's 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": "Get a specific Project item for a user or org",
7
+
"inputSchema": {
8
+
"properties": {
9
+
"item_id": {
10
+
"description": "The item's 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.",
0 commit comments