create_issue
Automate GitHub issue creation by specifying repository details, title, description, assignees, labels, and milestones using the PyGithub MCP Server. Streamline project management workflows.
Instructions
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
Name | Required | Description | Default |
---|---|---|---|
params_dict | Yes |
Input Schema (JSON Schema)
{
"properties": {
"params_dict": {
"title": "Params Dict",
"type": "object"
}
},
"required": [
"params_dict"
],
"title": "create_issueArguments",
"type": "object"
}