TrelloAI MCP Server
Integrates Trello with Cursor AI via MCP, enabling AI to read, analyze, and manage Trello boards according to user-defined rules
Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.
Install and connect
Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.
No verified installation or connection method is available in the retained evidence yet.
Identity
| Canonical slug | trelloai-aef925c6 | Deployment | Local Only |
|---|---|---|---|
| Canonical package | — | Repository | imanagerpms/trelloAI |
| First published | — | Latest release | — |
| Last security verification | — | Classification confidence | 90% |
| Publication | Draft | Official distribution | Not verified |
Distributions
| Channel | Identifier | Current version | Versions | Source |
|---|---|---|---|---|
| source_git | imanagerpms/trelloai | d7aed49798fcf68b3888702a29756fb3fc1e4f6a | 1 | Repository |
Current release
| Package | Version | Published / observed | Inventory | Security scan |
|---|---|---|---|---|
| source_gitimanagerpms/trelloai | d7aed49798fcf68b3888702a29756fb3fc1e4f6aCurrent | Aug 25, 2026 | 13 toolsSucceeded · 1 resources · 3 prompts | Evidence restricted |
Continuously monitor this MCP for security risk
Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.
- Independent exact-version security scans
- Continuous release and vulnerability monitoring
- Risk-change alerts with capability context
- Historical evidence and API exports
Current version evidence
No public current-version evidence is available yet.
Current protocol inventory
Tools 13
| Tool | Category | Annotations | Risk |
|---|---|---|---|
trello_add_commentAggiunge un commento a una cardInput schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"cardId": {
"type": "string",
"description": "ID della card"
},
"text": {
"type": "string",
"description": "Testo del commento"
}
},
"required": [
"cardId",
"text"
]
} | — | — | |
trello_archive_cardArchivia (chiude) una cardInput schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"cardId": {
"type": "string",
"description": "ID della card"
}
},
"required": [
"cardId"
]
} | — | — | |
trello_create_cardCrea una nuova card in una listaInput schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"idList": {
"type": "string",
"description": "ID della lista di destinazione"
},
"name": {
"type": "string",
"description": "Titolo della card"
},
"desc": {
"description": "Descrizione",
"type": "string"
},
"due": {
"description": "Scadenza ISO 8601, es. 2026-07-20T17:00:00.000Z",
"type": "string"
},
"idLabels": {
"description": "ID etichette",
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"idList",
"name"
]
} | — | — | |
trello_get_board_activityAttività recente su una board (creazioni, spostamenti, commenti)Input schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"boardId": {
"type": "string",
"description": "ID board"
},
"limit": {
"description": "Numero azioni (default 20)",
"type": "number"
}
},
"required": [
"boardId"
]
}Annotations{
"readOnlyHint": true
} | — | Read only | — |
trello_get_board_overviewPanoramica completa di una board: liste, card, scadenze e linkInput schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"boardId": {
"description": "ID board (default: TRELLO_DEFAULT_BOARD_ID)",
"type": "string"
}
}
}Annotations{
"readOnlyHint": true
} | — | Read only | — |
trello_get_cardDettaglio completo di una card: descrizione, commenti, checklist, membriInput schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"cardId": {
"type": "string",
"description": "ID della card"
}
},
"required": [
"cardId"
]
}Annotations{
"readOnlyHint": true
} | — | Read only | — |
trello_get_labelsElenca le etichette disponibili su una boardInput schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"boardId": {
"type": "string",
"description": "ID board"
}
},
"required": [
"boardId"
]
}Annotations{
"readOnlyHint": true
} | — | Read only | — |
trello_list_boardsElenca tutte le board Trello aperte dell'utenteInput schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {}
}Annotations{
"readOnlyHint": true
} | — | Read only | — |
trello_list_cardsElenca le card di una board o di una listaInput schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"boardId": {
"description": "ID board",
"type": "string"
},
"listId": {
"description": "ID lista (alternativa a boardId)",
"type": "string"
},
"filter": {
"description": "Filtro card (default: open)",
"type": "string",
"enum": [
"open",
"closed",
"all"
]
}
}
}Annotations{
"readOnlyHint": true
} | — | Read only | — |
trello_list_listsElenca le liste di una board TrelloInput schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"boardId": {
"type": "string",
"description": "ID della board"
}
},
"required": [
"boardId"
]
}Annotations{
"readOnlyHint": true
} | — | Read only | — |
trello_move_cardSposta una card in un'altra listaInput schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"cardId": {
"type": "string",
"description": "ID della card"
},
"idList": {
"type": "string",
"description": "ID lista di destinazione"
}
},
"required": [
"cardId",
"idList"
]
} | — | — | |
trello_searchCerca card per testo all'interno di una boardInput schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"boardId": {
"type": "string",
"description": "ID board"
},
"query": {
"type": "string",
"description": "Testo da cercare"
}
},
"required": [
"boardId",
"query"
]
}Annotations{
"readOnlyHint": true
} | — | Read only | — |
trello_update_cardAggiorna una card esistente (nome, descrizione, scadenza, lista)Input schema{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"cardId": {
"type": "string",
"description": "ID della card"
},
"name": {
"type": "string"
},
"desc": {
"type": "string"
},
"due": {
"description": "Scadenza ISO 8601 o null per rimuoverla",
"type": "string"
},
"dueComplete": {
"type": "boolean"
},
"idList": {
"description": "Sposta in un'altra lista",
"type": "string"
},
"closed": {
"type": "boolean"
}
},
"required": [
"cardId"
]
} | — | — |
Resources 1
- regole-gestione
trello://rulesRegole personalizzate per la gestione dei task Trello
Resource templates 0
- None observed.
Prompts 3
- gestisci-trello
gestisci-trelloPrompt per far gestire all'AI la board Trello secondo le regole in rules/
- schedula-moduli
schedula-moduliSchedula i compiti manutenzione spostando task per moduli liberi/finestra (camere, corridoi, cucine)
- stato-trello
stato-trelloOttieni un riepilogo dello stato attuale della board Trello
Remote endpoints
| Endpoint | Transport | Authentication | Health | Observed |
|---|---|---|---|---|
| No verified remote endpoint is linked. | ||||
TrelloAI MCP Server questions
How do I install TrelloAI MCP Server?
No verified package installation command is available in the retained catalog evidence.
What tools does TrelloAI MCP Server provide?
TrelloAI MCP Server exposed 13 tools during independent protocol observation, including trello_add_comment, trello_archive_card, trello_create_card, trello_get_board_activity, trello_get_board_overview, trello_get_card, trello_get_labels, trello_list_boards, and others.
Is TrelloAI MCP Server secure?
The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.
Explore related MCP server guides
Curated product and capability guides containing this catalog record.