Manage Trello boards, lists, cards, and members — create, update, move cards and collaborate with AI.
Use with AI AssistantsMCP
Connect Claude, Cursor, or any MCP-compatible client — then call tools directly
① Add This MCP Server
Paste into your AI client config — then all its tools are available instantly.
{
"mcpServers": {
"trello": {
"url": "https://mcp.aerostack.dev/s/aerostack/mcp-trello",
"headers": {
"Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
}
}
}
}Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.
② Call a Tool
Ask your AI assistant to call a specific tool, or send raw JSON-RPC:
Natural Language Prompt
“Use the _ping tool to verify trello credentials by calling a lightweight read endpoint. used internally by aerostack to validate credentials”
Using a Workspace?
Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.
Automate your entire Trello workflow — manage boards, lists, cards, and checklists from any AI agent.
Trello is a visual project management tool used by millions of teams worldwide. This MCP server gives your agents complete access to the Trello REST API: browsing and creating boards, managing lists and cards, archiving and moving cards between lists, and managing checklists and checklist items to track granular task progress.
Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-trello
| Tool | Description |
|---|---|
| _ping | Verify credentials by fetching the authenticated member profile |
| get_board | Get board details by ID — name, description, URL, lists, labels |
| list_boards | List all boards for the authenticated member |
| create_board | Create a new board with optional description and default lists |
| update_board | Update board name, description, or archive/unarchive it |
| get_board_members | Get all members of a board with their roles |
| get_lists | Get all lists on a board (filter: all, open, closed) |
| create_list | Create a new list on a board with position control |
| update_list | Rename a list or archive/unarchive it |
| move_list | Move a list to a different board |
| get_card | Get full card details — name, description, due date, labels, members, checklists |
| list_cards | List cards in a list (filter: all, open, closed) |
| create_card | Create a card in a list with name, description, due date, labels, members |
| update_card | Update card name, description, due date, position, or archive status |
| move_card | Move a card to a different list with position control |
| archive_card | Archive a card (hidden from board, not deleted) |
| delete_card | Permanently delete a card (irreversible) |
| get_card_checklists | Get all checklists on a card including item completion status |
| create_checklist | Create a checklist on a card |
| create_checklist_item | Add an item to a checklist |
| update_checklist_item | Mark a checklist item complete or incomplete |
| Variable | Required | Description | How to Get |
|---|---|---|---|
| TRELLO_API_KEY | Yes | Your Trello Power-Up / developer API key | Go to https://trello.com/power-ups/admin → create or select a Power-Up → API Key tab |
| TRELLO_TOKEN | Yes | Your Trello OAuth user token granting access to boards and cards | From the same Power-Up admin page → click "Token" link next to your API key → authorize access |
TRELLO_API_KEY and TRELLO_TOKEN under Project → SecretsOnce added, every AI agent in your workspace can manage Trello boards and cards automatically — no per-user setup needed.
"Create a new card in the 'To Do' list on my sprint board for the login bug fix"
"Move card abc123 to the 'Done' list"
"Add a checklist called 'Acceptance Criteria' to card xyz789 and mark the first item complete"
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-trello \
-H 'Content-Type: application/json' \
-H 'X-Mcp-Secret-TRELLO-API-KEY: your-api-key' \
-H 'X-Mcp-Secret-TRELLO-TOKEN: your-token' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_boards","arguments":{}}}'
MIT
Live Endpoint
https://mcp.aerostack.dev/s/aerostack/mcp-trello
Sub-50ms globally · Zero cold start
@aerostack
Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.
by @aerostack
Read and send Discord messages, manage channels, roles, and members — automate your community from AI agents.
by @aerostack
Create events, check availability, and manage calendars across Google Calendar — automate your scheduling.
by @aerostack
Create, search, update issues, manage sprints, boards, and projects in Jira — AI-native agile project management.
by @aerostack
Send messages, search conversations, and manage channels in Slack — connect AI agents to your team workspace.
by @aerostack
Full Jira Cloud integration — manage projects, issues, sprints, boards, comments, transitions, and user assignments for agile project management.
Yes. The Trello MCP includes a create_board tool that lets Claude create boards in your Trello account from a plain-English prompt. You can also update and delete boards — no Trello UI needed.
Yes. The Trello MCP includes tools to list and retrieve boards from your Trello account. Claude can filter, sort, and summarize boards based on your instructions.
Yes. The Trello MCP uses the open Model Context Protocol standard, so it works in Claude, Cursor, Windsurf, and any other MCP-compatible AI tool. All 14 Trello tools are available everywhere you connect it — install once on Aerostack.
Yes. The Trello MCP includes tools to update cards in your Trello account. Tell Claude what to change in plain English — it reads the current state and applies the update via the Trello API.