MCP server intelligence profile

trello-mcp Server

A Trello MCP server that enables searching cards by custom field values and managing board data with compact responses

Local OnlyAxGrid
Awaiting current scanSource Git · 96b0f9632d7954a9fc5fcce3542d164803d5cdce

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

1Distribution channel
7Independently 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 slugtrello-mcp-5ce0057bDeploymentLocal Only
Canonical packageRepositoryAxGrid/trello-mcp
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
source_gitaxgrid/trello-mcp96b0f9632d7954a9fc5fcce3542d164803d5cdce1Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
source_gitaxgrid/trello-mcp96b0f9632d7954a9fc5fcce3542d164803d5cdceCurrentAug 25, 20267 toolsSucceeded · 0 resources · 0 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-cfServer-reported name
1Capability groups
Aug 25, 2026Observed

Tools 7

ToolCategoryAnnotationsRisk
add_commentPost a comment to a card (useful for asking a clarifying question or logging progress while solving a task).
Input schema
{
  "type": "object",
  "properties": {
    "card": {
      "type": "string",
      "description": "Card id, shortLink, or URL."
    },
    "text": {
      "type": "string",
      "description": "Comment body (Markdown supported)."
    }
  },
  "required": [
    "card",
    "text"
  ],
  "additionalProperties": false
}
attach_fileAttach a file to a card — a local file by `path`, or a remote file by `url`. Handy for posting a result file when finishing a task.
Input schema
{
  "type": "object",
  "properties": {
    "card": {
      "type": "string",
      "description": "Card id, shortLink, or URL."
    },
    "path": {
      "type": "string",
      "description": "Absolute path to a local file to upload."
    },
    "url": {
      "type": "string",
      "description": "URL of a remote file to attach (instead of path)."
    },
    "name": {
      "type": "string",
      "description": "Optional display name for the attachment."
    },
    "mimeType": {
      "type": "string",
      "description": "Optional MIME type for an uploaded local file."
    }
  },
  "required": [
    "card"
  ],
  "additionalProperties": false
}
find_cardsFind cards on a board, optionally filtered by a custom field value, list name, and/or label. This is the main tool: e.g. fieldName='AI Ready', value='Claude kiosk'. Use `values` to match ANY of several values at once, e.g. ['Claude kiosk','Claude Module'] to pull the whole queue, or ['Need response'] to see what's waiting on a human. Matching is case-insensitive (exact first, then substring). Omit value/values to match cards where the field is simply set.
Input schema
{
  "type": "object",
  "properties": {
    "board": {
      "type": "string",
      "description": "Board id, shortLink, URL, or unique name."
    },
    "fieldName": {
      "type": "string",
      "description": "Custom field name to filter by, e.g. 'AI Ready'."
    },
    "value": {
      "type": "string",
      "description": "A single desired value of the custom field, e.g. 'Claude kiosk'."
    },
    "values": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Several values; a card matches if it has ANY of them (combined with `value`)."
    },
    "listName": {
      "type": "string",
      "description": "Optional: only cards whose list name contains this."
    },
    "label": {
      "type": "string",
      "description": "Optional: only cards with this label name or color."
    }
  },
  "required": [
    "board"
  ],
  "additionalProperties": false
}
get_cardGet the full content of one card: description, custom field values, checklists, attachments, comments, members, due date.
Input schema
{
  "type": "object",
  "properties": {
    "card": {
      "type": "string",
      "description": "Card id, 8-char shortLink, or card URL."
    }
  },
  "required": [
    "card"
  ],
  "additionalProperties": false
}
list_boardsList all Trello boards you can access. Returns compact {id, name, shortLink, url} — use this instead of dumping full board JSON.
Input schema
{
  "type": "object",
  "properties": {},
  "additionalProperties": false
}
list_custom_fieldsList the custom fields defined on a board, including the allowed options for list-type fields. Use this to discover field names and values before calling find_cards.
Input schema
{
  "type": "object",
  "properties": {
    "board": {
      "type": "string",
      "description": "Board id, 8-char shortLink, board URL, or (unique) name."
    }
  },
  "required": [
    "board"
  ],
  "additionalProperties": false
}
set_custom_fieldSet (or clear) a custom field on a card — e.g. mark a task done by setting AI Ready to 'Done'. For list-type fields the value is matched to an existing option; pass createOption:true to add a new option. Leave value empty to clear the field.
Input schema
{
  "type": "object",
  "properties": {
    "card": {
      "type": "string",
      "description": "Card id, shortLink, or URL."
    },
    "field": {
      "type": "string",
      "description": "Custom field name, e.g. 'AI Ready'."
    },
    "value": {
      "type": "string",
      "description": "Value to set. Empty/omitted clears the field."
    },
    "createOption": {
      "type": "boolean",
      "description": "For list fields: create the option if it doesn't exist yet (default false)."
    }
  },
  "required": [
    "card",
    "field"
  ],
  "additionalProperties": false
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

trello-mcp Server questions

How do I install trello-mcp Server?

No verified package installation command is available in the retained catalog evidence.

What tools does trello-mcp Server provide?

trello-mcp Server exposed 7 tools during independent protocol observation, including add_comment, attach_file, find_cards, get_card, list_boards, list_custom_fields, set_custom_field.

Is trello-mcp Server secure?

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

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Atlassian intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

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.