Update toolsnaps for cursor-based pagination
Update all tool snapshots to reflect the new cursor parameter replacing page/perPage parameters.
This commit is contained in:
@@ -6,6 +6,10 @@
|
||||
"description": "Get details for a commit from a GitHub repository",
|
||||
"inputSchema": {
|
||||
"properties": {
|
||||
"cursor": {
|
||||
"description": "Cursor for pagination. Use the cursor value from the previous response's pagination metadata to retrieve the next page. Leave blank for the first page.",
|
||||
"type": "string"
|
||||
},
|
||||
"include_diff": {
|
||||
"default": true,
|
||||
"description": "Whether to include file diffs and stats in the response. Default is true.",
|
||||
@@ -15,17 +19,6 @@
|
||||
"description": "Repository owner",
|
||||
"type": "string"
|
||||
},
|
||||
"page": {
|
||||
"description": "Page number for pagination (min 1)",
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"perPage": {
|
||||
"description": "Results per page for pagination (min 1, max 100)",
|
||||
"maximum": 100,
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"repo": {
|
||||
"description": "Repository name",
|
||||
"type": "string"
|
||||
|
||||
@@ -6,6 +6,10 @@
|
||||
"description": "Get information about a specific issue in a GitHub repository.",
|
||||
"inputSchema": {
|
||||
"properties": {
|
||||
"cursor": {
|
||||
"description": "Cursor for pagination. Use the cursor value from the previous response's pagination metadata to retrieve the next page. Leave blank for the first page.",
|
||||
"type": "string"
|
||||
},
|
||||
"issue_number": {
|
||||
"description": "The number of the issue",
|
||||
"type": "number"
|
||||
@@ -24,17 +28,6 @@
|
||||
"description": "The owner of the repository",
|
||||
"type": "string"
|
||||
},
|
||||
"page": {
|
||||
"description": "Page number for pagination (min 1)",
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"perPage": {
|
||||
"description": "Results per page for pagination (min 1, max 100)",
|
||||
"maximum": 100,
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"repo": {
|
||||
"description": "The name of the repository",
|
||||
"type": "string"
|
||||
|
||||
@@ -6,21 +6,14 @@
|
||||
"description": "List branches in a GitHub repository",
|
||||
"inputSchema": {
|
||||
"properties": {
|
||||
"cursor": {
|
||||
"description": "Cursor for pagination. Use the cursor value from the previous response's pagination metadata to retrieve the next page. Leave blank for the first page.",
|
||||
"type": "string"
|
||||
},
|
||||
"owner": {
|
||||
"description": "Repository owner",
|
||||
"type": "string"
|
||||
},
|
||||
"page": {
|
||||
"description": "Page number for pagination (min 1)",
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"perPage": {
|
||||
"description": "Results per page for pagination (min 1, max 100)",
|
||||
"maximum": 100,
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"repo": {
|
||||
"description": "Repository name",
|
||||
"type": "string"
|
||||
|
||||
@@ -10,21 +10,14 @@
|
||||
"description": "Author username or email address to filter commits by",
|
||||
"type": "string"
|
||||
},
|
||||
"cursor": {
|
||||
"description": "Cursor for pagination. Use the cursor value from the previous response's pagination metadata to retrieve the next page. Leave blank for the first page.",
|
||||
"type": "string"
|
||||
},
|
||||
"owner": {
|
||||
"description": "Repository owner",
|
||||
"type": "string"
|
||||
},
|
||||
"page": {
|
||||
"description": "Page number for pagination (min 1)",
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"perPage": {
|
||||
"description": "Results per page for pagination (min 1, max 100)",
|
||||
"maximum": 100,
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"repo": {
|
||||
"description": "Repository name",
|
||||
"type": "string"
|
||||
|
||||
@@ -10,6 +10,10 @@
|
||||
"description": "Only show notifications updated before the given time (ISO 8601 format)",
|
||||
"type": "string"
|
||||
},
|
||||
"cursor": {
|
||||
"description": "Cursor for pagination. Use the cursor value from the previous response's pagination metadata to retrieve the next page. Leave blank for the first page.",
|
||||
"type": "string"
|
||||
},
|
||||
"filter": {
|
||||
"description": "Filter notifications to, use default unless specified. Read notifications are ones that have already been acknowledged by the user. Participating notifications are those that the user is directly involved in, such as issues or pull requests they have commented on or created.",
|
||||
"enum": [
|
||||
@@ -23,17 +27,6 @@
|
||||
"description": "Optional repository owner. If provided with repo, only notifications for this repository are listed.",
|
||||
"type": "string"
|
||||
},
|
||||
"page": {
|
||||
"description": "Page number for pagination (min 1)",
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"perPage": {
|
||||
"description": "Results per page for pagination (min 1, max 100)",
|
||||
"maximum": 100,
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"repo": {
|
||||
"description": "Optional repository name. If provided with owner, only notifications for this repository are listed.",
|
||||
"type": "string"
|
||||
|
||||
@@ -10,6 +10,10 @@
|
||||
"description": "Filter by base branch",
|
||||
"type": "string"
|
||||
},
|
||||
"cursor": {
|
||||
"description": "Cursor for pagination. Use the cursor value from the previous response's pagination metadata to retrieve the next page. Leave blank for the first page.",
|
||||
"type": "string"
|
||||
},
|
||||
"direction": {
|
||||
"description": "Sort direction",
|
||||
"enum": [
|
||||
@@ -26,17 +30,6 @@
|
||||
"description": "Repository owner",
|
||||
"type": "string"
|
||||
},
|
||||
"page": {
|
||||
"description": "Page number for pagination (min 1)",
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"perPage": {
|
||||
"description": "Results per page for pagination (min 1, max 100)",
|
||||
"maximum": 100,
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"repo": {
|
||||
"description": "Repository name",
|
||||
"type": "string"
|
||||
|
||||
@@ -6,6 +6,10 @@
|
||||
"description": "List starred repositories",
|
||||
"inputSchema": {
|
||||
"properties": {
|
||||
"cursor": {
|
||||
"description": "Cursor for pagination. Use the cursor value from the previous response's pagination metadata to retrieve the next page. Leave blank for the first page.",
|
||||
"type": "string"
|
||||
},
|
||||
"direction": {
|
||||
"description": "The direction to sort the results by.",
|
||||
"enum": [
|
||||
@@ -14,17 +18,6 @@
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"page": {
|
||||
"description": "Page number for pagination (min 1)",
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"perPage": {
|
||||
"description": "Results per page for pagination (min 1, max 100)",
|
||||
"maximum": 100,
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"sort": {
|
||||
"description": "How to sort the results. Can be either 'created' (when the repository was starred) or 'updated' (when the repository was last pushed to).",
|
||||
"enum": [
|
||||
|
||||
@@ -6,21 +6,14 @@
|
||||
"description": "List git tags in a GitHub repository",
|
||||
"inputSchema": {
|
||||
"properties": {
|
||||
"cursor": {
|
||||
"description": "Cursor for pagination. Use the cursor value from the previous response's pagination metadata to retrieve the next page. Leave blank for the first page.",
|
||||
"type": "string"
|
||||
},
|
||||
"owner": {
|
||||
"description": "Repository owner",
|
||||
"type": "string"
|
||||
},
|
||||
"page": {
|
||||
"description": "Page number for pagination (min 1)",
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"perPage": {
|
||||
"description": "Results per page for pagination (min 1, max 100)",
|
||||
"maximum": 100,
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"repo": {
|
||||
"description": "Repository name",
|
||||
"type": "string"
|
||||
|
||||
@@ -6,6 +6,10 @@
|
||||
"description": "Get information on a specific pull request in GitHub repository.",
|
||||
"inputSchema": {
|
||||
"properties": {
|
||||
"cursor": {
|
||||
"description": "Cursor for pagination. Use the cursor value from the previous response's pagination metadata to retrieve the next page. Leave blank for the first page.",
|
||||
"type": "string"
|
||||
},
|
||||
"method": {
|
||||
"description": "Action to specify what pull request data needs to be retrieved from GitHub. \nPossible options: \n 1. get - Get details of a specific pull request.\n 2. get_diff - Get the diff of a pull request.\n 3. get_status - Get status of a head commit in a pull request. This reflects status of builds and checks.\n 4. get_files - Get the list of files changed in a pull request. Use with pagination parameters to control the number of results returned.\n 5. get_review_comments - Get the review comments on a pull request. They are comments made on a portion of the unified diff during a pull request review. Use with pagination parameters to control the number of results returned.\n 6. get_reviews - Get the reviews on a pull request. When asked for review comments, use get_review_comments method.\n 7. get_comments - Get comments on a pull request. Use this if user doesn't specifically want review comments. Use with pagination parameters to control the number of results returned.\n",
|
||||
"enum": [
|
||||
@@ -23,17 +27,6 @@
|
||||
"description": "Repository owner",
|
||||
"type": "string"
|
||||
},
|
||||
"page": {
|
||||
"description": "Page number for pagination (min 1)",
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"perPage": {
|
||||
"description": "Results per page for pagination (min 1, max 100)",
|
||||
"maximum": 100,
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"pullNumber": {
|
||||
"description": "Pull request number",
|
||||
"type": "number"
|
||||
|
||||
@@ -6,6 +6,10 @@
|
||||
"description": "Fast and precise code search across ALL GitHub repositories using GitHub's native search engine. Best for finding exact symbols, functions, classes, or specific code patterns.",
|
||||
"inputSchema": {
|
||||
"properties": {
|
||||
"cursor": {
|
||||
"description": "Cursor for pagination. Use the cursor value from the previous response's pagination metadata to retrieve the next page. Leave blank for the first page.",
|
||||
"type": "string"
|
||||
},
|
||||
"order": {
|
||||
"description": "Sort order for results",
|
||||
"enum": [
|
||||
@@ -14,17 +18,6 @@
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"page": {
|
||||
"description": "Page number for pagination (min 1)",
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"perPage": {
|
||||
"description": "Results per page for pagination (min 1, max 100)",
|
||||
"maximum": 100,
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"query": {
|
||||
"description": "Search query using GitHub's powerful code search syntax. Examples: 'content:Skill language:Java org:github', 'NOT is:archived language:Python OR language:go', 'repo:github/github-mcp-server'. Supports exact matching, language filters, path filters, and more.",
|
||||
"type": "string"
|
||||
|
||||
@@ -6,6 +6,10 @@
|
||||
"description": "Search for issues in GitHub repositories using issues search syntax already scoped to is:issue",
|
||||
"inputSchema": {
|
||||
"properties": {
|
||||
"cursor": {
|
||||
"description": "Cursor for pagination. Use the cursor value from the previous response's pagination metadata to retrieve the next page. Leave blank for the first page.",
|
||||
"type": "string"
|
||||
},
|
||||
"order": {
|
||||
"description": "Sort order",
|
||||
"enum": [
|
||||
@@ -18,17 +22,6 @@
|
||||
"description": "Optional repository owner. If provided with repo, only issues for this repository are listed.",
|
||||
"type": "string"
|
||||
},
|
||||
"page": {
|
||||
"description": "Page number for pagination (min 1)",
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"perPage": {
|
||||
"description": "Results per page for pagination (min 1, max 100)",
|
||||
"maximum": 100,
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"query": {
|
||||
"description": "Search query using GitHub issues search syntax",
|
||||
"type": "string"
|
||||
|
||||
@@ -6,6 +6,10 @@
|
||||
"description": "Search for pull requests in GitHub repositories using issues search syntax already scoped to is:pr",
|
||||
"inputSchema": {
|
||||
"properties": {
|
||||
"cursor": {
|
||||
"description": "Cursor for pagination. Use the cursor value from the previous response's pagination metadata to retrieve the next page. Leave blank for the first page.",
|
||||
"type": "string"
|
||||
},
|
||||
"order": {
|
||||
"description": "Sort order",
|
||||
"enum": [
|
||||
@@ -18,17 +22,6 @@
|
||||
"description": "Optional repository owner. If provided with repo, only pull requests for this repository are listed.",
|
||||
"type": "string"
|
||||
},
|
||||
"page": {
|
||||
"description": "Page number for pagination (min 1)",
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"perPage": {
|
||||
"description": "Results per page for pagination (min 1, max 100)",
|
||||
"maximum": 100,
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"query": {
|
||||
"description": "Search query using GitHub pull request search syntax",
|
||||
"type": "string"
|
||||
|
||||
@@ -6,6 +6,10 @@
|
||||
"description": "Find GitHub repositories by name, description, readme, topics, or other metadata. Perfect for discovering projects, finding examples, or locating specific repositories across GitHub.",
|
||||
"inputSchema": {
|
||||
"properties": {
|
||||
"cursor": {
|
||||
"description": "Cursor for pagination. Use the cursor value from the previous response's pagination metadata to retrieve the next page. Leave blank for the first page.",
|
||||
"type": "string"
|
||||
},
|
||||
"minimal_output": {
|
||||
"default": true,
|
||||
"description": "Return minimal repository information (default: true). When false, returns full GitHub API repository objects.",
|
||||
@@ -19,17 +23,6 @@
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"page": {
|
||||
"description": "Page number for pagination (min 1)",
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"perPage": {
|
||||
"description": "Results per page for pagination (min 1, max 100)",
|
||||
"maximum": 100,
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"query": {
|
||||
"description": "Repository search query. Examples: 'machine learning in:name stars:\u003e1000 language:python', 'topic:react', 'user:facebook'. Supports advanced search syntax for precise filtering.",
|
||||
"type": "string"
|
||||
|
||||
@@ -6,6 +6,10 @@
|
||||
"description": "Find GitHub users by username, real name, or other profile information. Useful for locating developers, contributors, or team members.",
|
||||
"inputSchema": {
|
||||
"properties": {
|
||||
"cursor": {
|
||||
"description": "Cursor for pagination. Use the cursor value from the previous response's pagination metadata to retrieve the next page. Leave blank for the first page.",
|
||||
"type": "string"
|
||||
},
|
||||
"order": {
|
||||
"description": "Sort order",
|
||||
"enum": [
|
||||
@@ -14,17 +18,6 @@
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"page": {
|
||||
"description": "Page number for pagination (min 1)",
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"perPage": {
|
||||
"description": "Results per page for pagination (min 1, max 100)",
|
||||
"maximum": 100,
|
||||
"minimum": 1,
|
||||
"type": "number"
|
||||
},
|
||||
"query": {
|
||||
"description": "User search query. Examples: 'john smith', 'location:seattle', 'followers:\u003e100'. Search is automatically scoped to type:user.",
|
||||
"type": "string"
|
||||
|
||||
Reference in New Issue
Block a user