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
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -877,6 +877,13 @@ The following sets of tools are available (all are on by default):
877
877
-`perPage`: Results per page for pagination (min 1, max 100) (number, optional)
878
878
-`repo`: Repository name (string, required)
879
879
880
+
-**list_starred_repositories** - List starred repositories
881
+
-`direction`: The direction to sort the results by. (string, optional)
882
+
-`page`: Page number for pagination (min 1) (number, optional)
883
+
-`perPage`: Results per page for pagination (min 1, max 100) (number, optional)
884
+
-`sort`: How to sort the results. Can be either 'created' (when the repository was starred) or 'updated' (when the repository was last pushed to). (string, optional)
885
+
-`username`: Username to list starred repositories for. Defaults to the authenticated user. (string, optional)
886
+
880
887
-**list_tags** - List tags
881
888
-`owner`: Repository owner (string, required)
882
889
-`page`: Page number for pagination (min 1) (number, optional)
@@ -903,6 +910,14 @@ The following sets of tools are available (all are on by default):
903
910
-`perPage`: Results per page for pagination (min 1, max 100) (number, optional)
"description": "The direction to sort the results by.",
11
+
"enum": [
12
+
"asc",
13
+
"desc"
14
+
],
15
+
"type": "string"
16
+
},
17
+
"page": {
18
+
"description": "Page number for pagination (min 1)",
19
+
"minimum": 1,
20
+
"type": "number"
21
+
},
22
+
"perPage": {
23
+
"description": "Results per page for pagination (min 1, max 100)",
24
+
"maximum": 100,
25
+
"minimum": 1,
26
+
"type": "number"
27
+
},
28
+
"sort": {
29
+
"description": "How to sort the results. Can be either 'created' (when the repository was starred) or 'updated' (when the repository was last pushed to).",
30
+
"enum": [
31
+
"created",
32
+
"updated"
33
+
],
34
+
"type": "string"
35
+
},
36
+
"username": {
37
+
"description": "Username to list starred repositories for. Defaults to the authenticated user.",
mcp.Description("Username to list starred repositories for. Defaults to the authenticated user."),
1697
+
),
1698
+
mcp.WithString("sort",
1699
+
mcp.Description("How to sort the results. Can be either 'created' (when the repository was starred) or 'updated' (when the repository was last pushed to)."),
1700
+
mcp.Enum("created", "updated"),
1701
+
),
1702
+
mcp.WithString("direction",
1703
+
mcp.Description("The direction to sort the results by."),
0 commit comments