get_resolutions
Retrieve available issue resolution options from Backlog to categorize and track project task completion status.
Instructions
Returns list of issue resolutions
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/getResolutions.ts:9-26 (handler)The getResolutionsTool function defines and returns the tool configuration, including the handler that executes the core logic by calling backlog.getResolutions().export const getResolutionsTool = ( backlog: Backlog, { t }: TranslationHelper ): ToolDefinition< ReturnType<typeof getResolutionsSchema>, (typeof ResolutionSchema)['shape'] > => { return { name: 'get_resolutions', description: t( 'TOOL_GET_RESOLUTIONS_DESCRIPTION', 'Returns list of issue resolutions' ), schema: z.object(getResolutionsSchema(t)), outputSchema: ResolutionSchema, handler: async () => backlog.getResolutions(), }; };
- src/tools/getResolutions.ts:7-7 (schema)Input schema for the get_resolutions tool, defined as an empty object since the tool takes no parameters.const getResolutionsSchema = buildToolSchema((_t) => ({}));
- src/tools/tools.ts:105-105 (registration)The getResolutionsTool is registered/added to the 'issue' toolset group in the allTools function.getResolutionsTool(backlog, helper),
- src/tools/tools.ts:32-32 (registration)Import of the getResolutionsTool function.import { getResolutionsTool } from './getResolutions.js';