Trello MCP Server

Productivitystdiov1.2.0
Repositorio

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.

Conectar

Añade esta configuración a .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>"
      }
    }
  }
}

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

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Trello Community (@delorenj)
Repositorio
https://github.com/delorenj/mcp-server-trello
Licencia
MIT
Versión
1.2.0
Estrellas
540
Última actualización
24 de junio de 2026