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.
Подключение
Добавьте эту конфигурацию в .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>"
}
}
}
}Инструменты (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"
}
}
}Ресурсы
Этот сервер не предоставляет ресурсы.
Промпты
Этот сервер не предоставляет промпты.
Сведения о сервере
- Лицензия
- MIT
- Версия
- 1.2.0
- Звёзды
- 540
- Последнее обновление
- 24 июня 2026 г.