AtomGit MCP Server

Mulan Permissive Software License, Version 2
0

check_if_user_is_assignable

Determine if a user can be assigned to an issue in an AtomGit repository by checking permissions and roles. Ensure proper issue assignment in collaborative projects.

Instructions

Check if a user can be assigned to an issue in a AtomGit repository

Input Schema

NameRequiredDescriptionDefault
assigneeYes被检查的用户名
ownerYes代码仓库的所有者
repoYes代码仓库的名称

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "assignee": { "description": "被检查的用户名", "type": "string" }, "owner": { "description": "代码仓库的所有者", "type": "string" }, "repo": { "description": "代码仓库的名称", "type": "string" } }, "required": [ "owner", "repo", "assignee" ], "type": "object" }
ID: oymm0hus7s