get_gist
Retrieve a specific GitHub gist by providing its ID. Use this tool to access and manage gist content efficiently within the mcp-github server.
Instructions
Get a specific gist
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gist_id | Yes | The ID of the gist |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"gist_id": {
"description": "The ID of the gist",
"type": "string"
}
},
"required": [
"gist_id"
],
"type": "object"
}