Skip to main content
Glama

get_board

Retrieve detailed information about a specific project board by providing its ID, enabling management of tasks, comments, and labels within the FluentBoards system.

Instructions

Get details of a specific board

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
board_idYesBoard ID

Implementation Reference

  • Executes the get_board tool: destructures board_id, validates access with validateBoardAccess, fetches board details from `/projects/${board_id}` API endpoint if allowed, formats and returns the response.
    async (args) => { const { board_id } = args; // Validate board access const accessCheck = validateBoardAccess(board_id); if (!accessCheck.allowed) { return formatResponse(createBoardFocusError(accessCheck)); } const response = await api.get(`/projects/${board_id}`); return formatResponse(response.data); }
  • Zod input schema for get_board tool, requiring a positive integer board_id.
    { board_id: z.number().int().positive().describe("Board ID"), },
  • Registers the get_board tool on the MCP server with name, description, input schema, and handler function.
    server.tool( "get_board", "Get details of a specific board", { board_id: z.number().int().positive().describe("Board ID"), }, async (args) => { const { board_id } = args; // Validate board access const accessCheck = validateBoardAccess(board_id); if (!accessCheck.allowed) { return formatResponse(createBoardFocusError(accessCheck)); } const response = await api.get(`/projects/${board_id}`); return formatResponse(response.data); } );

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/danieliser/fluent-boards-mcp-server'

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