Trello MCP Server
Manage boards, lists, cards, and organizations directly from any MCP-compatible client.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Trello MCP ServerList all my boards"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Trello MCP Server
A Model Context Protocol (MCP) server that provides programmatic access to Trello's API. Manage boards, lists, cards, and organizations directly from any MCP-compatible client.
Quick Start
1. Install
# Using uvx (recommended)
uvx trello-mcp-server
# Using uv
uv tool install trello-mcp-server
# Using pip
pip install trello-mcp-server2. Get API Key
Visit https://trello.com/power-ups/admin/new and create a Power-Up to get your API key (free, takes seconds).
3. Configure MCP Client
Add to your MCP settings configuration file:
{
"mcpServers": {
"trello": {
"command": "uvx",
"args": ["trello-mcp-server"],
"env": {
"TRELLO_API_KEY": "your_api_key_here"
}
}
}
}4. Authenticate
On first use, the server automatically opens your browser to authorize access. Click "Allow" and you're done!
Features
Boards: List and get board details
Lists: List and create board lists
Cards: List, create, and update cards (including moving between lists)
Card Members: Add, remove, and list members assigned to cards
Card Labels: Add, remove, and list labels on cards
Board Members: Add, remove, update, and invite board members
Organizations: Manage workspaces, boards, and team members
Available Tools
Board Management
list_boards- List all accessible boardsget_board- Get board detailslist_board_lists- Get all lists on a boardlist_board_cards- Get all cards on a boardlist_board_labels- List all available labels on a board
List Management
create_list- Create a new list on a board
Card Management
create_card- Create a new card on a listget_card- Get card detailsupdate_card- Update card properties (name, description, move to list)
Card Member Management
add_card_member- Add a member to a cardremove_card_member- Remove a member from a cardlist_card_members- List all members assigned to a card
Card Label Management
add_card_label- Add a label to a cardremove_card_label- Remove a label from a cardlist_card_labels- List all labels on a cardfilter_cards_by_label- Filter cards on a board by label
Board Member Management
list_board_members- List all board members with permissionsadd_board_member- Add an existing user to a boardremove_board_member- Remove a member from a boardupdate_board_member- Update member permission levelinvite_board_member- Invite a new member via email
Organization Management
list_organizations- List all organizations/workspacesget_organization- Get organization detailslist_organization_boards- Get all boards in an organizationlist_organization_members- Get all organization membersadd_organization_member- Add a member to an organizationremove_organization_member- Remove a member from an organization
Development
Setup
# Quick setup
./setup.sh
# Or manually
python -m venv venv
source venv/bin/activate
pip install -r requirements.txtAuthentication
# Interactive (opens browser)
python -m trello_mcp_server.auth --interactive
# Manual (copy-paste token)
python -m trello_mcp_server.auth --manual
# Check status
python -m trello_mcp_server.auth --checkTesting
# Run tests
python -m pytest
# Test organization tools
python test_organizations.pyDocumentation
docs/AUTHENTICATION.md - Detailed authentication flows
docs/ORGANIZATIONS.md - Organization management guide
docs/STARTUP_FLOW.md - Server startup process
docs/FUTURE_FEATURES.md - Planned features
CHANGELOG.md - Version history
Architecture
Language: Python 3.8+
Protocol: MCP with stdio transport
Authentication: OAuth 1.0a with automatic token caching
Token Storage:
~/.trello_mcp_token.json(600 permissions)
Security
API keys stored in MCP configuration (safe to share within team)
Tokens stored in home directory (never committed)
Automatic file permissions (600) on token cache
Tokens never expire unless manually revoked
Support
Trello API: https://developer.atlassian.com/cloud/trello/
Get API Key: https://trello.com/power-ups/admin/new
Manage Tokens: https://trello.com/my/account
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Development Setup
git clone https://github.com/cargom98/gm-trello-mcp.git
cd gm-trello-mcp
./setup.shRunning Tests
python -m pytest
python test_auth.py
python test_organizations.pyReleasing
See RELEASING.md for detailed release instructions.
Quick release:
./release.shLicense
See LICENSE file for details.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cargom98/gm-trello-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server