{ "name": "create_gist", "description": "Create a new gist", "inputSchema": { "type": "object", "properties": { "content": { "type": "string", "description": "Content for simple single-file gist creation" }, "description": { "type": "string", "description": "Description of the gist" }, "filename": { "type": "string", "description": "Filename for simple single-file gist creation" }, "public": { "type": "boolean", "description": "Whether the gist is public", "default": false } }, "required": [ "filename", "content" ] } }