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
+20-1Lines changed: 20 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -663,11 +663,30 @@ The following sets of tools are available (all are on by default):
663
663
-`owner_type`: Owner type (string, required)
664
664
-`project_number`: The project's number (number, required)
665
665
666
+
-**get_project_field** - Get project field
667
+
-`field_id`: The field's id. (number, required)
668
+
-`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)
669
+
-`owner_type`: Owner type (string, required)
670
+
-`project_number`: The project's number. (number, required)
671
+
672
+
-**get_project_item** - Get project item
673
+
-`item_id`: The item's ID. (number, required)
674
+
-`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)
675
+
-`owner_type`: Owner type (string, required)
676
+
-`project_number`: The project's number. (number, required)
677
+
666
678
-**list_project_fields** - List project fields
667
679
-`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
680
-`owner_type`: Owner type (string, required)
669
681
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
670
-
-`projectNumber`: The project's number. (string, required)
682
+
-`project_number`: The project's number. (number, required)
683
+
684
+
-**list_project_items** - List project items
685
+
-`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)
686
+
-`owner_type`: Owner type (string, required)
687
+
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
688
+
-`project_number`: The project's number. (number, required)
689
+
-`query`: Search query to filter items (string, optional)
671
690
672
691
-**list_projects** - List projects
673
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)
"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.",
"description": "List Project items for a user or org",
7
+
"inputSchema": {
8
+
"properties": {
9
+
"owner": {
10
+
"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.",
11
+
"type": "string"
12
+
},
13
+
"owner_type": {
14
+
"description": "Owner type",
15
+
"enum": [
16
+
"user",
17
+
"org"
18
+
],
19
+
"type": "string"
20
+
},
21
+
"per_page": {
22
+
"description": "Number of results per page (max 100, default: 30)",
0 commit comments