Create a new issue in a repository
github:create-issue
{ "type": "object", "properties": { "owner": { "type": "string", "description": "Repository owner" }, "repo": { "type": "string", "description": "Repository name" }, "title": { "type": "string", "description": "Issue title" }, "body": { "type": "string", "description": "Issue body (markdown)" }, "labels": { "type": "array", "description": "Label names" }, "assignees": { "type": "array", "description": "Usernames to assign" }, "end_user_id": { "type": "string", "description": "End-user ID for per-user OAuth token resolution" } }, "required": [ "owner", "repo", "title" ], "description": "Input schema for the github:create-issue tool." }