Skip to main content
Glama

get_resolutions

Retrieve a list of issue resolutions to streamline project management and enhance issue tracking within the Backlog platform using MCP server integration.

Instructions

Returns list of issue resolutions

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The main handler for the 'get_resolutions' tool. It defines the tool with name, description, input schema (empty), output schema, and the async handler function that delegates to 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(), }; };
  • Zod schema defining the structure of each resolution object returned by the get_resolutions tool (id and name).
    export const ResolutionSchema = z.object({ id: z.number(), name: z.string(), });
  • The get_resolutions tool is registered here in the 'issue' toolset within the allTools function.
    getResolutionsTool(backlog, helper),
  • Input schema for get_resolutions tool (empty object, no parameters).
    const getResolutionsSchema = buildToolSchema((_t) => ({}));
  • Import of the getResolutionsTool factory 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