Trello MCP Server
Provides tools to fetch and interact with Trello boards, lists, and cards, including retrieving board details, lists, cards, searching cards, and viewing card activity.
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
A Model Context Protocol (MCP) server that provides tools to fetch and interact with Trello boards, lists, and cards.
Features
Get all boards for authenticated user
Get board details
Fetch lists from a board
Fetch cards from boards or lists
Get specific card details
Search for cards across boards
Get card actions/history
Setup
1. Get Trello API Credentials
Important: You need to create a Power-Up to get API credentials.
Visit https://trello.com/power-ups/admin
Click "Create New Power-Up" (or "Crear" button)
Fill in basic information:
Name: "Trello MCP" (or any name you prefer)
Workspace: Select your workspace
Once created, go to the "API Key" section in your Power-Up settings
You'll see your API Key displayed (a 32-character string)
Click on the "Token" link (or "token" in the description) to generate your API token
Authorize the token when prompted
Copy both the API key and API token
Alternatively, you can go directly to https://trello.com/app-key if you already have a Power-Up created.
2. Install Dependencies
npm install3. Configure Environment Variables
Copy the example environment file and add your credentials:
cp .env.example .envEdit .env and add your credentials:
TRELLO_API_KEY=your_actual_api_key
TRELLO_API_TOKEN=your_actual_api_token4. Test the Server
Run the server directly:
npm startConfiguration
You can configure this MCP server globally in Claude Desktop or per-project in Claude Code CLI.
Option 1: Global Configuration (Claude Desktop)
Edit your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
Add the following configuration:
{
"mcpServers": {
"trello": {
"command": "node",
"args": ["/absolute/path/to/trello-mcp/index.js"],
"env": {
"TRELLO_API_KEY": "your_api_key_here",
"TRELLO_API_TOKEN": "your_api_token_here"
}
}
}
}Replace /absolute/path/to/trello-mcp/ with the actual path to this directory.
After adding the configuration, restart Claude Desktop.
Option 2: Per-Project Configuration (Claude Code CLI)
For Claude Code CLI, MCP servers are configured per-project in ~/.claude.json.
Important: You must include the type: "stdio" field and the env variables directly in the configuration. The .env file won't be loaded automatically.
Use this command to configure for a specific project:
# Using jq to add the configuration
jq '.projects."/path/to/your/project".mcpServers.trello = {
"type": "stdio",
"command": "node",
"args": ["/Users/ehigu/Documents/Esteban/Projects/habitus/webapp/trello-mcp/index.js"],
"env": {
"TRELLO_API_KEY": "your_api_key_here",
"TRELLO_API_TOKEN": "your_api_token_here"
}
}' ~/.claude.json > /tmp/claude_config.json && mv /tmp/claude_config.json ~/.claude.jsonOr manually edit ~/.claude.json:
{
"projects": {
"/path/to/your/project": {
"mcpServers": {
"trello": {
"type": "stdio",
"command": "node",
"args": ["/Users/ehigu/Documents/Esteban/Projects/habitus/webapp/trello-mcp/index.js"],
"env": {
"TRELLO_API_KEY": "your_api_key_here",
"TRELLO_API_TOKEN": "your_api_token_here"
}
}
}
}
}
}After adding the configuration, restart Claude Code.
Available Tools
get_my_boards
Get all boards for the authenticated user.
Parameters:
filter(optional): Filter boards by type (all, open, closed, starred, organization, public, members). Default: "open"
get_board
Get details of a specific board.
Parameters:
board_id(required): The ID of the board
get_board_lists
Get all lists on a board.
Parameters:
board_id(required): The ID of the boardfilter(optional): Filter lists (all, open, closed, none). Default: "open"
get_board_cards
Get all cards on a board.
Parameters:
board_id(required): The ID of the board
get_list_cards
Get all cards in a specific list.
Parameters:
list_id(required): The ID of the list
get_card
Get details of a specific card.
Parameters:
card_id(required): The ID of the card
search_cards
Search for cards across all boards.
Parameters:
query(required): Search queryboard_ids(optional): Comma-separated board IDs to search within
get_card_actions
Get actions (activity/history) for a specific card.
Parameters:
card_id(required): The ID of the card
Usage Examples
Once configured in Claude Desktop, you can use natural language to interact with your Trello boards:
"Show me all my open Trello boards"
"Get the cards from board [board_id]"
"Search for cards containing 'bug fix'"
"Show me the details of card [card_id]"
"What are the lists in my board?"
Troubleshooting
Authentication Errors
If you see authentication errors:
Verify your API key and token are correct
Make sure the token has not expired
Regenerate the token if necessary from https://trello.com/app-key
Server Not Starting
Check that Node.js is installed:
node --versionEnsure dependencies are installed:
npm installVerify environment variables are set correctly
MCP Server Shows "Failed" Status
If the MCP server shows as "failed" in Claude Code:
Missing
typefield: Make sure your configuration includes"type": "stdio". This is required for Claude Code CLI.Environment variables not loaded: The
.envfile is NOT automatically loaded when Claude Code runs the MCP server. You must include theenvobject with your API credentials directly in the configuration:{ "type": "stdio", "command": "node", "args": ["/path/to/trello-mcp/index.js"], "env": { "TRELLO_API_KEY": "your_api_key", "TRELLO_API_TOKEN": "your_api_token" } }Check logs: Run
claude --debugto see detailed error logsTest manually: Run the server directly to verify it works:
cd /path/to/trello-mcp TRELLO_API_KEY=your_key TRELLO_API_TOKEN=your_token node index.jsRestart Claude Code: After configuration changes, completely quit and restart Claude Code
MCP Server Not Showing in Claude
Check the path in your config is absolute and correct
Restart Claude Desktop/Code completely
Check Claude Desktop logs for any errors
For Claude Code CLI, verify the configuration is in the correct project path in
~/.claude.json
License
MIT
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/estebanhiguitad/trello-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server