Files
2026-07-13 12:37:57 +08:00

35 lines
791 B
Plaintext

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