Skip to main content
Glama

Backlog MCP Server

getResolutions.ts818 B
import { z } from 'zod'; import { Backlog } from 'backlog-js'; import { buildToolSchema, ToolDefinition } from '../types/tool.js'; import { TranslationHelper } from '../createTranslationHelper.js'; import { ResolutionSchema } from '../types/zod/backlogOutputDefinition.js'; const getResolutionsSchema = buildToolSchema((_t) => ({})); 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(), }; };

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