annator / mcps /grok_com_linear /tools /get_milestone.json
techprotrade's picture
Add mcps directory
31c9f7d verified
Raw
History Blame Contribute Delete
527 Bytes
{
"name": "get_milestone",
"description": "Retrieve details of a specific milestone by ID or name",
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"project": {
"type": "string",
"description": "Project name, ID, or slug"
},
"query": {
"type": "string",
"description": "Milestone name or ID"
}
},
"required": [
"project",
"query"
],
"additionalProperties": false
}
}