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
+12-3Lines changed: 12 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -658,10 +658,19 @@ The following sets of tools are available (all are on by default):
658
658
659
659
<summary>Projects</summary>
660
660
661
+
-**get_project** - Get project
662
+
-`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
+
-`owner_type`: Owner type (string, required)
664
+
-`project_number`: The project's number (number, required)
665
+
666
+
-**list_project_fields** - List project fields
667
+
-`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
+
-`owner_type`: Owner type (string, required)
669
+
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
670
+
-`projectNumber`: The project's number. (string, required)
671
+
661
672
-**list_projects** - List projects
662
-
-`after`: Cursor for items after (forward pagination) (string, optional)
663
-
-`before`: Cursor for items before (backwards pagination) (string, optional)
664
-
-`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)
673
+
-`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
674
-`owner_type`: Owner type (string, required)
666
675
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
667
676
-`query`: Filter projects by a search query (matches title and description) (string, optional)
"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 fields 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