TypeScript implementation of a Model Context Protocol (MCP) server for Trello integration
Ts Trello becomes available to MCP clients through the ts trello mcp server. TypeScript implementation of a Model Context Protocol (MCP) server for Trello integration.
A TypeScript implementation of a Model Context Protocol (MCP) server for Trello integration, providing tools for AI assistants to interact with Trello boards, lists, and cards.
Once connected, the assistant can call these 4 tools directly:
get_boards — Retrieves all Trello boards for the authenticated user. typescript // No input parameters requiredget_lists — Fetches all lists from a specified board. typescript { "request": { "board_id": string // ID of the board } }get_cards — Gets cards from a board or specific list. typescript { "request": { "board_id": string, // ID of the board "list_id"?: string // Optional: ID of a specificget_card_details — Retrieves detailed information about a specific card. typescript { "request": { "card_id": string // ID of the card } }Setup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.
Before the server will start you need to supply 2 environment variables: TRELLO_API_KEY, TRELLO_TOKEN. Keep credentials in your client's env block or a secrets manager rather than committing them.
Productivity servers pay off through capture: the tasks and notes that never get filed are the ones where opening the app is more friction than the thought is worth. Ts Trello sits in that group, and the shape of its toolset — get_boards, get_lists, get_cards among others — tells you what it is really for. Worth comparing against the other productivity servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.
| Tool | What it does |
|---|---|
| get_boards | Retrieves all Trello boards for the authenticated user. typescript // No input parameters required |
| get_lists | Fetches all lists from a specified board. typescript { "request": { "board_id": string // ID of the board } } |
| get_cards | Gets cards from a board or specific list. typescript { "request": { "board_id": string, // ID of the board "list_id"?: string // Optional: ID of a specific list } } |
| get_card_details | Retrieves detailed information about a specific card. typescript { "request": { "card_id": string // ID of the card } } |
| Variable | Description | Required |
|---|---|---|
| TRELLO_API_KEY | Credential the server authenticates with. | Yes |
| TRELLO_TOKEN | Credential the server authenticates with. | Yes |
Your workspace, on speaking terms with AI — search, read and write Notion pages and databases.
Issue tracking at the speed of conversation — Linear's official hosted server with OAuth and zero install.
Search and read your Drive — Docs, Sheets and files become context your assistant can actually use.
Your assistant inside the workspace — read channels, search history, post messages and tame the noise.
Metabase ships its own MCP endpoint — search your BI content, build and run queries, and save questions and dashboards without leaving the chat.
Stop letting your assistant hallucinate n8n node parameters — this server hands it the real schemas, templates and validation.