Skip to main content
Glama

list_issue_assignees

Retrieve assigned users for a specific issue in an AtomGit repository to track responsibility and collaboration progress.

Instructions

List assignees for a specific issue in a AtomGit repository

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ownerYesRepository owner
repoYesRepository name

Implementation Reference

  • The main handler function that executes the tool logic by making a GET request to the AtomGit API endpoint for listing repository assignees.
    export async function listIssueAssignees( owner: string, repo: string ) { return atomGitRequest( `https://api.atomgit.com/repos/${encodeURIComponent(owner)}/${encodeURIComponent(repo)}/assignees`, { method: "GET", } ); }
  • Zod schema defining the input parameters (owner and repo) for the list_issue_assignees tool.
    export const ListAssigneesSchema = z.object({ owner: z.string().describe("Repository owner"), repo: z.string().describe("Repository name"), });
  • index.ts:102-104 (registration)
    Tool registration in the ListTools response, specifying name, description, and input schema.
    name: "list_issue_assignees", description: "List assignees for a specific issue in a AtomGit repository", inputSchema: zodToJsonSchema(issues.ListAssigneesSchema),
  • index.ts:361-369 (registration)
    Dispatch case in the CallToolRequest handler that parses input, calls the issues.listIssueAssignees function, and formats the response.
    case "list_issue_assignees": { const args = issues.ListAssigneesSchema.parse(request.params.arguments); const { owner, repo } = args; const result = await issues.listIssueAssignees(owner, repo); return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }], }; }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kaiyuanxiaobing/atomgit-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server