list_gists
Retrieve gists for the authenticated user, allowing filtering by update time, pagination, and results per page. Integrates with mcp-github for enhanced GitHub API functionality.
Instructions
List gists for the authenticated user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Page number of the results | |
per_page | No | Results per page (max 100) | |
since | No | Only gists updated at or after this time are returned |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"page": {
"description": "Page number of the results",
"type": "number"
},
"per_page": {
"description": "Results per page (max 100)",
"type": "number"
},
"since": {
"description": "Only gists updated at or after this time are returned",
"type": "string"
}
},
"type": "object"
}