AtomGit MCP Server

Mulan Permissive Software License, Version 2
0

assign_issue

Assign specific users to issues in AtomGit repositories by specifying repository details and responsible parties to streamline issue management.

Instructions

Assign users to an issue in a AtomGit repository

Input Schema

NameRequiredDescriptionDefault
assigneeYes要分配的负责人列表
issue_numberYesissue 的编号
ownerYes代码仓库的所有者
repoYes代码仓库的名称

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "assignee": { "description": "要分配的负责人列表", "type": "string" }, "issue_number": { "description": "issue 的编号", "type": "number" }, "owner": { "description": "代码仓库的所有者", "type": "string" }, "repo": { "description": "代码仓库的名称", "type": "string" } }, "required": [ "owner", "repo", "issue_number", "assignee" ], "type": "object" }
ID: oymm0hus7s