# Trello Mcp

> Connects Trello to AI agents

- **Type:** MCP server
- **Install:** `agentstack add mcp-ilvallod-trello-mcp`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [ilvallod](https://agentstack.voostack.com/s/ilvallod)
- **Installs:** 0
- **Category:** [Productivity](https://agentstack.voostack.com/c/productivity)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [ilvallod](https://github.com/ilvallod)
- **Source:** https://github.com/ilvallod/trello-mcp

## Install

```sh
agentstack add mcp-ilvallod-trello-mcp
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Trello MCP

A local `stdio` MCP server for Trello built with FastMCP and Python. 

## Setup

```bash
uv sync
cp .env.example .env
```

 Fill `.env` with your Trello credentials.

```bash
uv run trello-mcp
```

## Tools

- `list_boards(include_closed: bool = False)`
- `list_lists(board_id: str, include_closed: bool = False)`
- `list_cards(list_id: str, include_closed: bool = False)`
- `get_card(card: str)`
- `get_card_comments(card: str, limit: int | None = None)`
- `add_comment(card: str, text: str)`
- `create_card(list_id: str, name: str, description: str | None = None, due: str | None = None)`
- `add_member_to_card(card: str, member: str)`
- `move_card(card: str, list_id: str)`
- `update_card_description(card: str, description: str)`
- `attach_image_to_card(card: str, image_url: str, name: str | None = None)`
- `attach_local_image_to_card(card: str, file_path: str, name: str | None = None, mime_type: str | None = None)`
- `rename_list(list_id: str, new_name: str)`

## Coding agent setup

Add this server definition to `.codex/config.toml` or or `~/.claude.json`:

```toml
[mcp_servers.trello]
transport = "stdio"
command = "uv"
args = ["run", "--directory", "/absolute/path/to/trello-mcp", "trello-mcp"]

[mcp_servers.trello.env]
TRELLO_API_KEY = "${TRELLO_API_KEY}"
TRELLO_API_TOKEN = "${TRELLO_API_TOKEN}"
TRELLO_UPLOAD_ROOTS = "${TRELLO_UPLOAD_ROOTS}"
```

```bash
uv run --directory /absolute/path/to/trello-mcp trello-mcp
```

## Optional hardening for local file uploads

The tool `attach_local_image_to_card` can read local files from your machine and upload them to Trello.

To restrict where files can be read from, set `TRELLO_UPLOAD_ROOTS`:

```env
TRELLO_UPLOAD_ROOTS=/Users/you/Pictures,/Users/you/Desktop/safe-uploads
```

## OAuth 2.0 note

The current implementation uses Trello's existing API key token model. Waiting for Trello to ship the OAuth 2.0 support. See Atlassian's RFC-89: [Introducing OAuth2 to Trello](https://community.developer.atlassian.com/t/rfc-89-introducing-oauth2-to-trello/90359).

## Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [ilvallod](https://github.com/ilvallod)
- **Source:** [ilvallod/trello-mcp](https://github.com/ilvallod/trello-mcp)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** yes
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/mcp-ilvallod-trello-mcp
- Seller: https://agentstack.voostack.com/s/ilvallod
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
