Skip to main content
Glama

Trello MCP Server

by andypost
types.ts937 B
export interface Board { id: string; name: string; desc: string; url: string; } export interface List { id: string; name: string; closed: boolean; pos: number; } export interface Card { id: string; name: string; desc: string; url: string; pos: number; closed: boolean; due: string | null; idList: string; idBoard: string; } export interface CardDetails extends Card { labels: Array<{ id: string; name: string; color: string; }>; members: Array<{ id: string; fullName: string; username: string; }>; attachments: Array<{ id: string; name: string; url: string; }>; } export interface GetListsRequest { board_id: string; } export interface GetCardsRequest { board_id: string; list_id?: string; } export interface GetCardDetailsRequest { card_id: string; } export interface UpdateCardRequest { card_id: string; update_data: Partial<Card>; }

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/andypost/mcp-server-ts-trello'

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