🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

fastmcp-trello

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fastmcp-trello

A Trello MCP server built with FastMCP

pipPyPI
Version
0.5.0
Weekly downloads
92
Maintainers
1

fastmcp-trello

PyPI Python CI License: MIT

A Trello MCP server — manage boards, cards, and lists from any AI assistant that supports the Model Context Protocol. MCP is an open standard that lets AI assistants like Claude, Cursor, and Copilot interact with external tools and services.

Trello MCP Tools

ToolDescription
get_boardsList all boards accessible to you
get_boardGet a board's details including its lists
get_listsGet all open lists on a board
create_boardCreate a new board
update_boardUpdate a board's name or description
close_boardClose (archive) a board
get_cardsGet all cards in a list
get_cardGet full details for a card including comments
create_cardCreate a new card on a list
update_cardUpdate a card's fields or move it to a different list
archive_cardArchive (close) a card
get_labelsGet all labels defined on a board
create_labelCreate a new label on a board
delete_labelDelete a label from a board
add_label_to_cardAdd a label to a card
remove_label_from_cardRemove a label from a card
create_listCreate a new list on a board
update_listRename a list
archive_listArchive (close) a list
move_listMove a list to a new position
get_attachmentsGet all attachments on a card
add_attachmentAdd a URL attachment to a card
delete_attachmentDelete an attachment from a card
add_commentAdd a comment to a card
search_cardsSearch for cards across boards, optionally scoped to a specific board

Prerequisites

You need a Trello API key and token:

  • Go to the Trello Power-Ups admin page
  • Create a new Power-Up (any name/workspace will do)
  • Generate a new API key
  • From the API key page, click the Token link to generate a token

Installation

Add the following to your MCP client configuration (Claude Desktop, Cursor, Windsurf, etc.):

{
  "mcpServers": {
    "trello": {
      "command": "uvx",
      "args": ["fastmcp-trello"],
      "env": {
        "TRELLO_API_KEY": "your-api-key",
        "TRELLO_TOKEN": "your-token"
      }
    }
  }
}

Or run standalone:

TRELLO_API_KEY=your-api-key TRELLO_TOKEN=your-token uvx fastmcp-trello

Usage

Once installed in your MCP client, you can ask your AI assistant things like:

"Show me all my Trello boards"

"Create a card called 'Fix login bug' in the To Do list on my Project board"

Configuration

VariableRequiredDescription
TRELLO_API_KEYYesYour Trello API key
TRELLO_TOKENYesYour Trello authentication token

Development

git clone https://github.com/Jimdrews/fastmcp-trello.git
cd fastmcp-trello
uv sync --group dev
uv run pytest

See CONTRIBUTING.md for more details.

License

MIT

Keywords

agents

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts