AtomGit MCP Server

Mulan Permissive Software License, Version 2
0

create_issue_comment

Add a comment to an issue in an AtomGit repository by specifying the owner, repository name, issue number, and comment content in Markdown format.

Instructions

Create an issue comment in a AtomGit repository issue

Input Schema

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

Input Schema (JSON Schema)

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