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: pkg/github/__toolsnaps__/list_project_fields.snap
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,11 @@
7
7
"inputSchema": {
8
8
"properties": {
9
9
"after": {
10
-
"description":"Forward pagination cursor. Use when thepreviousresponse'spageInfo.hasNextPage=true. Supply pageInfo.nextCursor as 'after' and immediately request the next page. LOOP UNTIL pageInfo.hasNextPage=false (don't stop early). Keep per_page identical for every page.",
"description":"Backward pagination cursor(rare): supply to move to the preceding page usingpageInfo.prevCursor. Not needed for normal forward iteration.",
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/list_project_items.snap
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,11 @@
7
7
"inputSchema": {
8
8
"properties": {
9
9
"after": {
10
-
"description":"Forward pagination cursor. Use when thepreviousresponse'spageInfo.hasNextPage=true. Supply pageInfo.nextCursor as 'after' and immediately request the next page. LOOP UNTIL pageInfo.hasNextPage=false (don't stop early). Keep query, fields, and per_page identical for every page.",
"description":"Backward pagination cursor(rare): supply to move to the preceding page usingpageInfo.prevCursor. Not needed for normal forward iteration.",
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/list_projects.snap
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,11 @@
7
7
"inputSchema": {
8
8
"properties": {
9
9
"after": {
10
-
"description":"Forward pagination cursor. Use when thepreviousresponse'spageInfo.hasNextPage=true. Supply pageInfo.nextCursor as 'after' and immediately request the next page. LOOP UNTIL pageInfo.hasNextPage=false (don't stop early). Keep query and per_page identical for every page.",
"description":"Backward pagination cursor(rare): supply to move to the preceding page usingpageInfo.prevCursor. Not needed for normal forward iteration.",
Copy file name to clipboardExpand all lines: pkg/github/projects.go
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -51,13 +51,13 @@ Examples:
51
51
- is:open feature planning`),
52
52
),
53
53
mcp.WithNumber("per_page",
54
-
mcp.Description(fmt.Sprintf("Results per page (max %d). Keep constant across paginated requests; changing mid-sequence can complicate page traversal.",MaxProjectsPerPage)),
54
+
mcp.Description(fmt.Sprintf("Results per page (max %d)",MaxProjectsPerPage)),
55
55
),
56
56
mcp.WithString("after",
57
-
mcp.Description("Forward pagination cursor. Use when thepreviousresponse'spageInfo.hasNextPage=true. Supply pageInfo.nextCursor as 'after' and immediately request the next page. LOOP UNTIL pageInfo.hasNextPage=false (don't stop early). Keep query and per_page identical for every page."),
mcp.Description("Backward pagination cursor(rare): supply to move to the preceding page usingpageInfo.prevCursor. Not needed for normal forward iteration."),
@@ -229,13 +229,13 @@ func ListProjectFields(getClient GetClientFn, t translations.TranslationHelperFu
229
229
mcp.Description("The project's number."),
230
230
),
231
231
mcp.WithNumber("per_page",
232
-
mcp.Description(fmt.Sprintf("Results per page (max %d). Keep constant across paginated requests; changing mid-sequence can complicate page traversal.",MaxProjectsPerPage)),
232
+
mcp.Description(fmt.Sprintf("Results per page (max %d)",MaxProjectsPerPage)),
233
233
),
234
234
mcp.WithString("after",
235
-
mcp.Description("Forward pagination cursor. Use when thepreviousresponse'spageInfo.hasNextPage=true. Supply pageInfo.nextCursor as 'after' and immediately request the next page. LOOP UNTIL pageInfo.hasNextPage=false (don't stop early). Keep per_page identical for every page."),
mcp.Description("Backward pagination cursor(rare): supply to move to the preceding page usingpageInfo.prevCursor. Not needed for normal forward iteration."),
- Drop 'fields' param on subsequent pages if field values are needed.`),
441
441
),
442
442
mcp.WithNumber("per_page",
443
-
mcp.Description(fmt.Sprintf("Results per page (max %d). Keep constant across paginated requests; changing mid-sequence can complicate page traversal.",MaxProjectsPerPage)),
443
+
mcp.Description(fmt.Sprintf("Results per page (max %d)",MaxProjectsPerPage)),
444
444
),
445
445
mcp.WithString("after",
446
-
mcp.Description("Forward pagination cursor. Use when thepreviousresponse'spageInfo.hasNextPage=true. Supply pageInfo.nextCursor as 'after' and immediately request the next page. LOOP UNTIL pageInfo.hasNextPage=false (don't stop early). Keep query, fields, and per_page identical for every page."),
mcp.Description("Backward pagination cursor(rare): supply to move to the preceding page usingpageInfo.prevCursor. Not needed for normal forward iteration."),
mcp.Description("Field IDs to include (e.g. [\"102589\",\"985201\"]). CRITICAL: Always provide to get field values. Without this, only titles returned. Get IDs from list_project_fields first."),