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.
Bağlan
Bu yapılandırmayı şuraya ekleyin: .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>"
}
}
}
}Araçlar (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"
}
}
}Kaynaklar
Bu sunucu herhangi bir kaynak sunmuyor.
Prompt'lar
Bu sunucu herhangi bir prompt sunmuyor.
Sunucu bilgileri
- Lisans
- MIT
- Sürüm
- 1.2.0
- Yıldızlar
- 540
- Son güncelleme
- 24 Haziran 2026