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
| Name | Required | Description | Default |
|---|---|---|---|
| owner | Yes | Repository owner | |
| repo | Yes | Repository name |
Implementation Reference
- operations/issues.ts:207-217 (handler)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", } ); }
- operations/issues.ts:58-61 (schema)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) }], }; }