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
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -670,12 +670,25 @@ The following sets of tools are available (all are on by default):
670
670
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
671
671
-`project_number`: The project's number. (number, required)
672
672
673
+
-**get_project_item** - Get project item
674
+
-`item_id`: The item's ID. (number, required)
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)
676
+
-`owner_type`: Owner type (string, required)
677
+
-`project_number`: The project's number. (number, required)
678
+
673
679
-**list_project_fields** - List project fields
674
680
-`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
681
-`owner_type`: Owner type (string, required)
676
682
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
677
683
-`project_number`: The project's number. (number, required)
678
684
685
+
-**list_project_items** - List project items
686
+
-`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)
687
+
-`owner_type`: Owner type (string, required)
688
+
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
689
+
-`project_number`: The project's number. (number, required)
690
+
-`query`: Search query to filter items (string, optional)
691
+
679
692
-**list_projects** - List projects
680
693
-`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 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)",
mcp.WithString("owner", mcp.Required(), mcp.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