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"
    }
  }
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
Trello Community (@delorenj)
代码仓库
https://github.com/delorenj/mcp-server-trello
许可证
MIT
版本
1.2.0
星标
540
最后更新
2026年6月24日