Skip to main content
Glama

trello_get_board_members

Retrieve all members with access to a specific Trello board to manage team collaboration and permissions.

Instructions

Get all members who have access to a specific Trello board.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
apiKeyYesTrello API key (automatically provided by Claude.app from your stored credentials)
tokenYesTrello API token (automatically provided by Claude.app from your stored credentials)
boardIdYesID of the board to get members for

Implementation Reference

  • The handler function that executes the Trello get board members tool logic.
    export async function handleTrelloGetBoardMembers(args: unknown) {
      try {
        const { apiKey, token, boardId } = validateGetBoardMembers(args);
        const client = new TrelloClient({ apiKey, token });
        
        const response = await client.getBoardMembers(boardId);
        const members = response.data;
        
        const result = {
          summary: `Found ${members.length} member(s) on board`,
          boardId,
          members: members.map(member => ({
            id: member.id,
            fullName: member.fullName,
            username: member.username,
            memberType: member.memberType,
            confirmed: member.confirmed,
            avatarUrl: member.avatarUrl,
            initials: member.initials
          })),
          rateLimit: response.rateLimit
        };
        
        return {
          content: [
            {
  • The tool registration and input schema definition for trello_get_board_members.
    export const trelloGetBoardMembersTool: Tool = {
      name: 'trello_get_board_members',
      description: 'Get all members who have access to a specific Trello board.',
      inputSchema: {
        type: 'object',
        properties: {
          apiKey: {
            type: 'string',
            description: 'Trello API key (automatically provided by Claude.app from your stored credentials)'
          },
          token: {
            type: 'string',
            description: 'Trello API token (automatically provided by Claude.app from your stored credentials)'
          },
          boardId: {
            type: 'string',
            description: 'ID of the board to get members for',
            pattern: '^[a-f0-9]{24}$'
          }
        },
        required: ['apiKey', 'token', 'boardId']
      }
    };

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/kocakli/Trello-Desktop-MCP'

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