| { | |
| "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 | |
| } | |
| } |