Skip to main content

trello

Enables management of Trello boards, lists, and cards through the Trello REST API for streamlined project organization.

Install this skill

or
39/100

Security score

The trello skill was audited on Feb 21, 2026 and we found 21 security issues across 2 threat categories. Review the findings below before installing.

Categories Tested

Security Issues

medium line 33

Curl to non-GitHub URL

SourceSKILL.md
33curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id}'
medium line 39

Curl to non-GitHub URL

SourceSKILL.md
39curl -s "https://api.trello.com/1/boards/{boardId}/lists?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id}'
medium line 45

Curl to non-GitHub URL

SourceSKILL.md
45curl -s "https://api.trello.com/1/lists/{listId}/cards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id, desc}'
medium line 51

Curl to non-GitHub URL

SourceSKILL.md
51curl -s -X POST "https://api.trello.com/1/cards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" \
medium line 60

Curl to non-GitHub URL

SourceSKILL.md
60curl -s -X PUT "https://api.trello.com/1/cards/{cardId}?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" \
medium line 67

Curl to non-GitHub URL

SourceSKILL.md
67curl -s -X POST "https://api.trello.com/1/cards/{cardId}/actions/comments?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" \
medium line 74

Curl to non-GitHub URL

SourceSKILL.md
74curl -s -X PUT "https://api.trello.com/1/cards/{cardId}?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" \
medium line 88

Curl to non-GitHub URL

SourceSKILL.md
88curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN&fields=name,id" | jq
medium line 91

Curl to non-GitHub URL

SourceSKILL.md
91curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | select(.name | contains("Work"))'
medium line 94

Curl to non-GitHub URL

SourceSKILL.md
94curl -s "https://api.trello.com/1/boards/{boardId}/cards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, list: .idList}'
low line 18

External URL reference

SourceSKILL.md
181. Get your API key: https://trello.com/app-key
low line 33

External URL reference

SourceSKILL.md
33curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id}'
low line 39

External URL reference

SourceSKILL.md
39curl -s "https://api.trello.com/1/boards/{boardId}/lists?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id}'
low line 45

External URL reference

SourceSKILL.md
45curl -s "https://api.trello.com/1/lists/{listId}/cards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, id, desc}'
low line 51

External URL reference

SourceSKILL.md
51curl -s -X POST "https://api.trello.com/1/cards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" \
low line 60

External URL reference

SourceSKILL.md
60curl -s -X PUT "https://api.trello.com/1/cards/{cardId}?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" \
low line 67

External URL reference

SourceSKILL.md
67curl -s -X POST "https://api.trello.com/1/cards/{cardId}/actions/comments?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" \
low line 74

External URL reference

SourceSKILL.md
74curl -s -X PUT "https://api.trello.com/1/cards/{cardId}?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" \
low line 88

External URL reference

SourceSKILL.md
88curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN&fields=name,id" | jq
low line 91

External URL reference

SourceSKILL.md
91curl -s "https://api.trello.com/1/members/me/boards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | select(.name | contains("Work"))'
low line 94

External URL reference

SourceSKILL.md
94curl -s "https://api.trello.com/1/boards/{boardId}/cards?key=$TRELLO_API_KEY&token=$TRELLO_TOKEN" | jq '.[] | {name, list: .idList}'
Scanned on Feb 21, 2026
View Security Dashboard
Installation guide →