Skip to main content
Glama
yokan-board
by yokan-board

get_board

Retrieve a specific Kanban board by its ID to access and manage its columns and tasks through the Yokan Board API.

Instructions

Retrieves a specific Kanban board by its ID.

Args: board_id (int): The ID of the board to retrieve. auth (AuthContext): The authentication context containing user ID and token.

Returns: yokan_models.Board: The requested Kanban board.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
board_idYes
authYes

Implementation Reference

  • The `get_board` MCP tool implementation in `src/main.py`, which retrieves a Kanban board via the `yokan_client`.
    async def get_board(
        board_id: int,
        auth: AuthContext,
    ) -> yokan_models.Board:
        """Retrieves a specific Kanban board by its ID.
    
        Args:
            board_id (int): The ID of the board to retrieve.
            auth (AuthContext): The authentication context containing user ID and token.
    
        Returns:
            yokan_models.Board: The requested Kanban board.
        """
        return await yokan_client.get_board(board_id=board_id, token=auth.token)

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/yokan-board/yokan-board-mcp'

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