Skip to main content
Glama

get_task

Retrieve task details including comments and attachments from FluentBoards project management boards to support task management and collaboration.

Instructions

Get details of a specific task including comments and attachments

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
board_idYesBoard ID
task_idYesTask ID

Implementation Reference

  • Handler function that extracts board_id and task_id from arguments, performs a GET request to the API endpoint for the specific task, and returns the formatted response data.
        const { board_id, task_id } = args;
        const response = await api.get(`/projects/${board_id}/tasks/${task_id}`);
        return formatResponse(response.data);
      }
    );
  • Input schema using Zod for validating board_id and task_id as positive integers.
      board_id: z.number().int().positive().describe("Board ID"),
      task_id: z.number().int().positive().describe("Task ID"),
    },
    async (args) => {
  • Registers the get_task tool on the MCP server with name, description, input schema, and handler function.
      "get_task",
      "Get details of a specific task including comments and attachments",
      {
        board_id: z.number().int().positive().describe("Board ID"),
        task_id: z.number().int().positive().describe("Task ID"),
      },
      async (args) => {
        const { board_id, task_id } = args;
        const response = await api.get(`/projects/${board_id}/tasks/${task_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