Labsco
firecrawl logo

trello

✓ Official3

by firecrawl · part of firecrawl/openclaw

Manage Trello boards, lists, and cards via the Trello REST API.

🔥🔥🔥✓ VerifiedFreeQuick setup
🧰 Not standalone. This skill ships with firecrawl/openclaw and only works together with that tool — install the tool first, then add this skill.

Manage Trello boards, lists, and cards via the Trello REST API.

Inspect the full instructions your agent will receiveExpand

This is the exact playbook injected into your agent when the skill activates — shown here so you can audit it before installing. You don't need to read it to use the skill.

by firecrawl

Manage Trello boards, lists, and cards via the Trello REST API. npx skills add https://github.com/firecrawl/openclaw --skill trello Download ZIPGitHub3

Trello Skill

Manage Trello boards, lists, and cards directly from OpenClaw.

Notes

  • Board/List/Card IDs can be found in the Trello URL or via the list commands

  • The API key and token provide full access to your Trello account - keep them secret!

  • Rate limits: 300 requests per 10 seconds per API key; 100 requests per 10 seconds per token; /1/members endpoints are limited to 100 requests per 900 seconds

Examples

Copy & paste — that's it
# Get all boards
curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN&fields=name,id" | jq

# Find a specific board by name
curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | select(.name | contains("Work"))'

# Get all cards on a board
curl -s "https://api.trello.com/1/boards/{boardId}/cards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, list: .idList}'