annator / mcps /grok_com_github /tools /create_gist.json
techprotrade's picture
Add mcps directory
31c9f7d verified
Raw
History Blame Contribute Delete
684 Bytes
{
"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"
]
}
}