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
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -664,8 +664,6 @@ The following sets of tools are available (all are on by default):
664
664
-`project_number`: The project's number (number, required)
665
665
666
666
-**list_projects** - List projects
667
-
-`after`: Cursor for items after (forward pagination) (string, optional)
668
-
-`before`: Cursor for items before (backwards pagination) (string, optional)
669
667
-`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)
670
668
-`owner_type`: Owner type (string, required)
671
669
-`per_page`: Number of results per page (max 100, default: 30) (number, optional)
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/list_projects.snap
-8Lines changed: 0 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -6,14 +6,6 @@
6
6
"description": "List Projects for a user or organization",
7
7
"inputSchema": {
8
8
"properties": {
9
-
"after": {
10
-
"description": "Cursor for items after (forward pagination)",
11
-
"type": "string"
12
-
},
13
-
"before": {
14
-
"description": "Cursor for items before (backwards pagination)",
15
-
"type": "string"
16
-
},
17
9
"owner": {
18
10
"description": "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.",
mcp.WithString("owner", mcp.Required(), mcp.Description("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.")),
26
26
mcp.WithString("query", mcp.Description("Filter projects by a search query (matches title and description)")),
27
-
mcp.WithString("before", mcp.Description("Cursor for items before (backwards pagination)")),
28
-
mcp.WithString("after", mcp.Description("Cursor for items after (forward pagination)")),
29
27
mcp.WithNumber("per_page", mcp.Description("Number of results per page (max 100, default: 30)")),
0 commit comments