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 the previous response's pageInfo.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.",
10
+
"description": "Forward pagination cursor from previous pageInfo.nextCursor.",
11
11
"type": "string"
12
12
},
13
13
"before": {
14
-
"description": "Backward pagination cursor (rare): supply to move to the preceding page using pageInfo.prevCursor. Not needed for normal forward iteration.",
14
+
"description": "Backward pagination cursor from previous pageInfo.prevCursor (rare).",
15
15
"type": "string"
16
16
},
17
17
"owner": {
@@ -27,7 +27,7 @@
27
27
"type": "string"
28
28
},
29
29
"per_page": {
30
-
"description": "Results per page (max 50). Keep constant across paginated requests; changing mid-sequence can complicate page traversal.",
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 the previous response's pageInfo.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.",
10
+
"description": "Forward pagination cursor from previous pageInfo.nextCursor.",
11
11
"type": "string"
12
12
},
13
13
"before": {
14
-
"description": "Backward pagination cursor (rare): supply to move to the preceding page using pageInfo.prevCursor. Not needed for normal forward iteration.",
14
+
"description": "Backward pagination cursor from previous pageInfo.prevCursor (rare).",
15
15
"type": "string"
16
16
},
17
17
"fields": {
@@ -34,7 +34,7 @@
34
34
"type": "string"
35
35
},
36
36
"per_page": {
37
-
"description": "Results per page (max 50). Keep constant across paginated requests; changing mid-sequence can complicate page traversal.",
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 the previous response's pageInfo.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.",
10
+
"description": "Forward pagination cursor from previous pageInfo.nextCursor.",
11
11
"type": "string"
12
12
},
13
13
"before": {
14
-
"description": "Backward pagination cursor (rare): supply to move to the preceding page using pageInfo.prevCursor. Not needed for normal forward iteration.",
14
+
"description": "Backward pagination cursor from previous pageInfo.prevCursor (rare).",
15
15
"type": "string"
16
16
},
17
17
"owner": {
@@ -27,7 +27,7 @@
27
27
"type": "string"
28
28
},
29
29
"per_page": {
30
-
"description": "Results per page (max 50). Keep constant across paginated requests; changing mid-sequence can complicate page traversal.",
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 the previous response's pageInfo.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."),
57
+
mcp.Description("Forward pagination cursor from previous pageInfo.nextCursor."),
58
58
),
59
59
mcp.WithString("before",
60
-
mcp.Description("Backward pagination cursor (rare): supply to move to the preceding page using pageInfo.prevCursor. Not needed for normal forward iteration."),
60
+
mcp.Description("Backward pagination cursor from previous pageInfo.prevCursor (rare)."),
@@ -228,13 +228,13 @@ func ListProjectFields(getClient GetClientFn, t translations.TranslationHelperFu
228
228
mcp.Description("The project's number."),
229
229
),
230
230
mcp.WithNumber("per_page",
231
-
mcp.Description(fmt.Sprintf("Results per page (max %d). Keep constant across paginated requests; changing mid-sequence can complicate page traversal.", MaxProjectsPerPage)),
231
+
mcp.Description(fmt.Sprintf("Results per page (max %d)", MaxProjectsPerPage)),
232
232
),
233
233
mcp.WithString("after",
234
-
mcp.Description("Forward pagination cursor. Use when the previous response's pageInfo.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."),
234
+
mcp.Description("Forward pagination cursor from previous pageInfo.nextCursor."),
235
235
),
236
236
mcp.WithString("before",
237
-
mcp.Description("Backward pagination cursor (rare): supply to move to the preceding page using pageInfo.prevCursor. Not needed for normal forward iteration."),
237
+
mcp.Description("Backward pagination cursor from previous pageInfo.prevCursor (rare)."),
- Drop 'fields' param on subsequent pages if field values are needed.`),
453
453
),
454
454
mcp.WithNumber("per_page",
455
-
mcp.Description(fmt.Sprintf("Results per page (max %d). Keep constant across paginated requests; changing mid-sequence can complicate page traversal.", MaxProjectsPerPage)),
455
+
mcp.Description(fmt.Sprintf("Results per page (max %d)", MaxProjectsPerPage)),
456
456
),
457
457
mcp.WithString("after",
458
-
mcp.Description("Forward pagination cursor. Use when the previous response's pageInfo.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."),
458
+
mcp.Description("Forward pagination cursor from previous pageInfo.nextCursor."),
459
459
),
460
460
mcp.WithString("before",
461
-
mcp.Description("Backward pagination cursor (rare): supply to move to the preceding page using pageInfo.prevCursor. Not needed for normal forward iteration."),
461
+
mcp.Description("Backward pagination cursor from previous pageInfo.prevCursor (rare)."),
462
462
),
463
463
mcp.WithArray("fields",
464
464
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."),
0 commit comments