Trello MCP Server
Productivitystdiov1.2.0
MCP server for Trello that lets AI agents manage boards, lists, and cards. Supports creating and moving cards, updating due dates and labels, adding comments and checklists, and searching across boards, turning Trello into a conversational task and project tracker.
Connect
Add this configuration to .claude/mcp.json
{
"mcpServers": {
"trello": {
"command": "npx",
"args": [
"-y",
"@delorenj/mcp-server-trello"
],
"env": {
"TRELLO_API_KEY": "<YOUR_TRELLO_API_KEY>",
"TRELLO_TOKEN": "<YOUR_TRELLO_TOKEN>"
}
}
}
}Tools (3)
create_card
Create a card in a Trello list.
{
"type": "object",
"required": [
"list_id",
"name"
],
"properties": {
"due": {
"type": "string",
"description": "Due date in ISO 8601 format"
},
"name": {
"type": "string",
"description": "Card title"
},
"list_id": {
"type": "string",
"description": "ID of the target list"
},
"description": {
"type": "string",
"description": "Card description"
}
}
}move_card
Move a card to a different list.
{
"type": "object",
"required": [
"card_id",
"list_id"
],
"properties": {
"card_id": {
"type": "string",
"description": "ID of the card to move"
},
"list_id": {
"type": "string",
"description": "Destination list ID"
}
}
}list_cards
List cards on a board or within a specific list.
{
"type": "object",
"required": [
"board_id"
],
"properties": {
"list_id": {
"type": "string",
"description": "Optional list ID to scope results"
},
"board_id": {
"type": "string",
"description": "Board ID"
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- License
- MIT
- Version
- 1.2.0
- Stars
- 540
- Last Updated
- June 24, 2026