d7aed49798fcf68b3888702a29756fb3fc1e4f6asource_git · imanagerpms/trelloai · current release
Observed 2026-08-25T17:53:15.272Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.
{
"prompts": {
"listChanged": true
},
"resources": {
"listChanged": true
},
"tools": {
"listChanged": true
}
}| 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"
]
} | — | — · — | — |
Regole personalizzate per la gestione dei task Trello
{
"resource_key": "trello://rules",
"uri": "trello://rules",
"name": "regole-gestione",
"description": "Regole personalizzate per la gestione dei task Trello",
"mime_type": "text/markdown",
"annotations": null,
"metadata_hash": "8994812363a1b39b4ac55232d78669a44aa0bc49c1494035d44e0f0ede24ae5d"
}Prompt per far gestire all'AI la board Trello secondo le regole in rules/
{
"prompt_key": "gestisci-trello",
"name": "gestisci-trello",
"description": "Prompt per far gestire all'AI la board Trello secondo le regole in rules/",
"arguments": [
{
"name": "boardId",
"description": "ID board Trello (usa TRELLO_DEFAULT_BOARD_ID se omesso)",
"required": false
},
{
"name": "focus",
"description": "Focus opzionale, es. 'task in scadenza questa settimana'",
"required": false
}
],
"metadata_hash": "4db646dce997b59d6737b1d2d6b969fe9fc42b60d06003684187555c58471545"
}Schedula i compiti manutenzione spostando task per moduli liberi/finestra (camere, corridoi, cucine)
{
"prompt_key": "schedula-moduli",
"name": "schedula-moduli",
"description": "Schedula i compiti manutenzione spostando task per moduli liberi/finestra (camere, corridoi, cucine)",
"arguments": [
{
"name": "moduliLiberi",
"description": "Sigle moduli accessibili (LIBERA + FINESTRA), separate da virgola. Es: NR1, NR2, NR3, NR CORRIDOIO, NR CUCINA",
"required": true
},
{
"name": "dataScadenza",
"description": "Data di scadenza per i task in IN ESECUZIONE. Es: 16/07/2026, 2026-07-16, domani",
"required": true
},
{
"name": "moduliFinestra",
"description": "Opzionale: scadenze strette per finestre turnover. Formato SIGLA=HH:MM separati da virgola. Es: NR3=15:00,ITC301=14:30",
"required": false
}
],
"metadata_hash": "bff18bc377b93558f34752bd94c5525eb3cd8fd7547e384e5d1f2f094d572ef3"
}Ottieni un riepilogo dello stato attuale della board Trello
{
"prompt_key": "stato-trello",
"name": "stato-trello",
"description": "Ottieni un riepilogo dello stato attuale della board Trello",
"arguments": [
{
"name": "boardId",
"description": "ID board Trello",
"required": false
}
],
"metadata_hash": "38f70b61602b2cdd5bd7c9c654ee68727430a1d2e86cc960122ab9efc1c6827b"
}