← TrelloAI

TrelloAI d7aed49798fcf68b3888702a29756fb3fc1e4f6a

source_git · imanagerpms/trelloai · current release

13
Tools
1
Resources
0
Templates
3
Prompts

Observation

Observed 2026-08-25T17:53:15.272Z using mcpSecurity-inventory. Status: succeeded. Negotiated protocol: 2025-06-18.

Server capabilities
{
  "prompts": {
    "listChanged": true
  },
  "resources": {
    "listChanged": true
  },
  "tools": {
    "listChanged": true
  }
}

Tools 13

ToolCategoryAnnotationsRisk
trello_add_commentAggiunge un commento a una card
Input 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 card
Input 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 lista
Input 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 link
Input 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, membri
Input 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 board
Input 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'utente
Input 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 lista
Input 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 Trello
Input 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 lista
Input 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 board
Input 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

Resource templates 0

Prompts 3

Let’s talk about MCP security.

Share your details and our security team will contact you.