MCP server intelligence profile

TrelloAI MCP Server

Integrates Trello with Cursor AI via MCP, enabling AI to read, analyze, and manage Trello boards according to user-defined rules

Local Onlyimanagerpms
Awaiting current scanSource Git · d7aed49798fcf68b3888702a29756fb3fc1e4f6a

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
13Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

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 slugtrelloai-aef925c6DeploymentLocal Only
Canonical packageRepositoryimanagerpms/trelloAI
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
source_gitimanagerpms/trelloaid7aed49798fcf68b3888702a29756fb3fc1e4f6a1Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
source_gitimanagerpms/trelloaid7aed49798fcf68b3888702a29756fb3fc1e4f6aCurrentAug 25, 202613 toolsSucceeded · 1 resources · 3 promptsEvidence restricted
Enterprise protection

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
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
trello-aiServer-reported name
3Capability groups
Aug 25, 2026Observed

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

  • regole-gestionetrello://rules

    Regole personalizzate per la gestione dei task Trello

Resource templates 0

  • None observed.

Prompts 3

  • gestisci-trellogestisci-trello

    Prompt per far gestire all'AI la board Trello secondo le regole in rules/

  • schedula-modulischedula-moduli

    Schedula i compiti manutenzione spostando task per moduli liberi/finestra (camere, corridoi, cucine)

  • stato-trellostato-trello

    Ottieni un riepilogo dello stato attuale della board Trello

Remote endpoints

EndpointTransportAuthenticationHealthObserved
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.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.