PyGithub MCP Server

create_issue

Create a new issue in a GitHub repository.

Args: params_dict: Parameters for creating an issue including: - owner: Repository owner (user or organization) - repo: Repository name - title: Issue title - body: Issue description (optional) - assignees: List of usernames to assign - labels: List of labels to add - milestone: Milestone number (optional) Returns: Created issue details from GitHub API

Input Schema

NameRequiredDescriptionDefault
params_dictYes

Input Schema (JSON Schema)

{ "properties": { "params_dict": { "title": "Params Dict", "type": "object" } }, "required": [ "params_dict" ], "title": "create_issueArguments", "type": "object" }