AtomGit MCP Server

Mulan Permissive Software License, Version 2
0

create_issue

Use this tool to create a new issue in an AtomGit repository. Specify the owner, repo, title, body, and optional fields like assignees, milestone, and labels to manage open-source collaboration effectively.

Instructions

Create a new issue in a AtomGit repository

Input Schema

NameRequiredDescriptionDefault
assigneesNo
bodyYesissue 内容(使用MD格式编写内容)
labelsNo
milestoneNo
ownerYes代码仓库的所有者,一般称之为'用户名(owner)’。该名称不区分大小写。
repoYes代码仓库的名称。该名称不区分大小写。
titleYesissue 标题

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "assignees": { "items": { "type": "string" }, "type": "array" }, "body": { "description": "issue 内容(使用MD格式编写内容)", "type": "string" }, "labels": { "items": { "type": "string" }, "type": "array" }, "milestone": { "type": "number" }, "owner": { "description": "代码仓库的所有者,一般称之为'用户名(owner)’。该名称不区分大小写。", "type": "string" }, "repo": { "description": "代码仓库的名称。该名称不区分大小写。", "type": "string" }, "title": { "description": "issue 标题", "type": "string" } }, "required": [ "owner", "repo", "title", "body" ], "type": "object" }
ID: oymm0hus7s