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
+2-9Lines changed: 2 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -845,22 +845,15 @@ Options are:
845
845
-`owner_type`: Owner type (string, required)
846
846
-`per_page`: Results per page (max 50) (number, optional)
847
847
-`project_number`: The project's number. (number, required)
848
-
-`query`: Query string for advanced filtering of project items. See Projects server instructions (list_project_items query rules) for full construction heuristics, syntax essentials, qualifier glossary, pagination mandate, recovery guidance, and prohibited behaviors. (string, optional)
848
+
-`query`: Query string for advanced filtering of project items using GitHub's project filtering syntax. (string, optional)
849
849
850
850
-**list_projects** - List projects
851
851
-`after`: Forward pagination cursor from previous pageInfo.nextCursor. (string, optional)
852
852
-`before`: Backward pagination cursor from previous pageInfo.prevCursor (rare). (string, optional)
853
853
-`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)
854
854
-`owner_type`: Owner type (string, required)
855
855
-`per_page`: Results per page (max 50) (number, optional)
856
-
-`query`: Filter projects by a search query
857
-
858
-
Scope: title text + open/closed state.
859
-
PERMITTED qualifiers: is:open, is:closed (state), simple title terms.
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/list_project_items.snap
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,7 @@
42
42
"type": "number"
43
43
},
44
44
"query": {
45
-
"description": "Query string for advanced filtering of project items. See Projects server instructions (list_project_items query rules) for full construction heuristics, syntax essentials, qualifier glossary, pagination mandate, recovery guidance, and prohibited behaviors.",
45
+
"description": "Query string for advanced filtering of project items using GitHub's project filtering syntax.",
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/list_projects.snap
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@
31
31
"type": "number"
32
32
},
33
33
"query": {
34
-
"description": "Filter projects by a search query\n\t\t\t\t\nScope: title text + open/closed state.\nPERMITTED qualifiers: is:open, is:closed (state), simple title terms.\nFORBIDDEN: is:issue, is:pr, assignee:, label:, status:, sprint-name:, parent-issue:, team-name:, priority:, etc.\nExamples:\n\t- roadmap is:open\n\t- is:open feature planning",
34
+
"description": "Filter projects by title text and open/closed state; permitted qualifiers: is:open, is:closed; examples: \"roadmap is:open\", \"is:open feature planning\".",
Copy file name to clipboardExpand all lines: pkg/github/projects.go
+2-9Lines changed: 2 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -41,14 +41,7 @@ func ListProjects(getClient GetClientFn, t translations.TranslationHelperFunc) (
41
41
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."),
42
42
),
43
43
mcp.WithString("query",
44
-
mcp.Description(`Filter projects by a search query
45
-
46
-
Scope: title text + open/closed state.
47
-
PERMITTED qualifiers: is:open, is:closed (state), simple title terms.
mcp.Description(`Filter projects by title text and open/closed state; permitted qualifiers: is:open, is:closed; examples: "roadmap is:open", "is:open feature planning".`),
52
45
),
53
46
mcp.WithNumber("per_page",
54
47
mcp.Description(fmt.Sprintf("Results per page (max %d)", MaxProjectsPerPage)),
@@ -396,7 +389,7 @@ func ListProjectItems(getClient GetClientFn, t translations.TranslationHelperFun
396
389
mcp.Description("The project's number."),
397
390
),
398
391
mcp.WithString("query",
399
-
mcp.Description(`Query string for advanced filtering of project items. See Projects server instructions (list_project_items query rules) for full construction heuristics, syntax essentials, qualifier glossary, pagination mandate, recovery guidance, and prohibited behaviors.`),
392
+
mcp.Description(`Query string for advanced filtering of project items using GitHub's project filtering syntax.`),
400
393
),
401
394
mcp.WithNumber("per_page",
402
395
mcp.Description(fmt.Sprintf("Results per page (max %d)", MaxProjectsPerPage)),
0 commit comments