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
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -667,7 +667,7 @@ The following sets of tools are available (all are on by default):
667
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
668
-`owner_type`: Owner type (string, required)
669
669
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
670
-
-`projectNumber`: The project's number. (string, required)
670
+
-`projectNumber`: The project's number. (number, required)
671
671
672
672
-**list_projects** - List projects
673
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)
"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.",
15
+
"type": "string"
16
+
},
17
+
"owner_type": {
18
+
"description": "Owner type",
19
+
"enum": [
20
+
"user",
21
+
"org"
22
+
],
23
+
"type": "string"
24
+
},
25
+
"per_page": {
26
+
"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.")),
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