trello-mcp-server
Provides tools for managing Trello boards, lists, and cards, including creating, reading, updating, archiving, and moving cards, as well as adding boards and lists.
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-servershow me all my Trello 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
Cloud-hosted MCP server that exposes Trello operations as tools for Claude. Replaces the manual snapshot → propose → apply workflow.
Architecture
Claude (Code/Cowork) → HTTPS → Fly.io MCP Server → Trello APIRelated MCP server: Trello MCP server
Disclaimer
This software is provided as-is, without warranty of any kind. Use at your own risk.
Your credentials, your responsibility — you supply your own Trello API key/token and bearer token. Keep them secret; rotate them if compromised.
Destructive actions are possible — Claude can archive cards, create boards, and modify data. Review the tools you expose and restrict board access as appropriate before connecting an AI agent.
No affiliation — this project is not affiliated with, endorsed by, or supported by Trello or Atlassian.
Self-hosted — when you deploy to Fly.io you run your own instance. The author does not operate a shared instance and has no access to your data or credentials.
See LICENSE for the full MIT license terms.
Tools
Tool | Description |
| All open Trello boards |
| Lists on a board |
| Cards in a list |
| Full card detail |
| Create a card |
| Move card to another list |
| Update name / desc / due date |
| Archive a card (reversible) |
| Create a new board |
| Add a list to a board |
Setup
1. Prerequisites
Fly.io account +
flyctlinstalledTrello API key + token from https://trello.com/power-ups/admin
2. Deploy
git clone https://github.com/sens8tion/trello-mcp-server
cd trello-mcp-server
# Create the Fly app (first time only)
flyctl launch --no-deploy
# Set secrets
flyctl secrets set \
TRELLO_API_KEY=your_key \
TRELLO_TOKEN=your_token \
MCP_AUTH_TOKEN=your_secret_bearer_token
# Deploy
flyctl deploy3. Register in Claude MCP config
Run the helper to auto-detect your Claude Desktop config path and write the entry:
python register-mcp.py
# then restart Claude DesktopOr add manually to your Claude MCP settings (e.g. ~/.claude/mcp_servers.json):
{
"mcpServers": {
"trello": {
"command": "mcp-remote",
"args": [
"https://trello-mcp-server.fly.dev/mcp",
"--transport",
"http-only",
"--header",
"Authorization:Bearer your_secret_bearer_token"
]
}
}
}Local dev
pip install -r requirements-dev.txt
cp .env.example .env # fill in your values
python server.py
# Lint + test
ruff check .
pytestLogging
Each tool emits a human-readable log entry via ctx.info() MCP context notifications — visible in the Claude Desktop log pane and any MCP-aware client.
Log messages describe the action taken (fetch, create, move, update, archive, etc.), making it easy to trace agent behaviour during a session. No secrets are logged; API keys and tokens remain in environment variables.
Example log output:
[list_cards] Fetching cards for list 63a1b2c3d4e5f6a7b8c9d0e1
[move_card] Moving card abc123 → list 63a1b2c3d4e5f6a7b8c9d0e1
[archive_card] Archiving card abc123CI/CD
CI runs on every push/PR: lint (
ruff) + tests (pytest)Deploy runs on merge to
main(after CI passes):flyctl deploy --remote-onlyRequired GitHub secret:
FLY_API_TOKEN
Future
Ephemeral agent — instead of a persistent VM, the server runs as an on-demand process (e.g. Fly.io Machine spun up per invocation and destroyed on completion). Accepts a natural-language task, runs a Claude agentic loop to orchestrate Trello operations, then exits. No idle cost, no persistent state.
This server cannot be installed
Maintenance
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/sens8tion/trello-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server