Skip to main content
Glama

JIRA MCP Server

board.formatter.ts659 B
/** * Board formatter */ import type { Board } from "@features/jira/boards/models"; import type { Formatter } from "@features/jira/shared"; /** * Formatted board data interface */ interface FormattedBoard { id: string; name: string; type: string; location: Board["location"]; self: string; } /** * Formatter class for board data */ export class BoardFormatter implements Formatter<Board, FormattedBoard> { /** * Format a board for display */ format(board: Board): FormattedBoard { return { id: board.id, name: board.name, type: board.type, location: board.location, self: board.self, }; } }

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/Dsazz/mcp-jira'

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