Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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(), }; };
  • Input schema for the get_resolutions tool, defined as an empty object since the tool takes no parameters.
    const getResolutionsSchema = buildToolSchema((_t) => ({}));
  • The getResolutionsTool is registered/added to the 'issue' toolset group in the allTools function.
    getResolutionsTool(backlog, helper),
  • Import of the getResolutionsTool function.
    import { getResolutionsTool } from './getResolutions.js';

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/nulab/backlog-mcp-server'

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