Trello MCP Server
Allows interaction with Trello boards, lists, and cards, enabling task management, project tracking, and team collaboration through the Trello platform.
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 AI assistants with access to Trello's functionality. This server enables AI models to interact with Trello boards, lists, and cards programmatically.
Prerequisites
Node.js >= 18.0.0
npm or yarn package manager
Trello API credentials (API key and token)
Related MCP server: Trello MCP Server
Installation
Clone this repository:
git clone <repository-url>
cd trello_mcp_serverInstall dependencies:
npm installBuild the project:
npm run buildConfiguration
Getting Trello API Credentials
To use this MCP server, you need to obtain your Trello API key and token. Follow these steps:
Visit the Trello REST API documentation
Follow the instructions to create a Power-Up and generate your API credentials
Once you have your API key and token, you'll add them to your MCP client configuration
MCP Client Configuration
This is an MCP (Model Context Protocol) server that needs to be configured in your MCP client (Cursor or Claude Desktop).
For Cursor
Add the following configuration to your Cursor MCP settings:
{
"mcpServers": {
"trello-mcp-server": {
"type": "stdio",
"command": "node",
"args": ["<path_to_this_project>/trello_mcp_server/dist/index.js"],
"env": {
"TRELLO_API_KEY": "your_api_key",
"TRELLO_TOKEN": "your_token"
}
}
}
}For Claude Desktop
Add the following configuration to your Claude Desktop MCP settings:
{
"mcpServers": {
"trello-mcp-server": {
"type": "stdio",
"command": "node",
"args": ["<path_to_this_project>/trello_mcp_server/dist/index.js"],
"env": {
"TRELLO_API_KEY": "your_api_key",
"TRELLO_TOKEN": "your_token"
}
}
}
}Important Notes:
Replace
<path_to_this_project>with the absolute path to your cloned repositoryReplace
your_api_keyandyour_tokenwith your actual Trello credentialsMake sure the path points to the compiled
dist/index.jsfile
Usage
Once configured in your MCP client (Cursor or Claude Desktop), the Trello MCP server will be automatically available to AI assistants. You can then interact with Trello through natural language commands like:
"Show me all my Trello boards"
"Create a new card in my project board"
"Move the 'Fix bug' card to the 'In Progress' list"
"Add a comment to card XYZ"
Using with MCP Inspector
To inspect and test the MCP server:
npm run inspectAPI Tools Reference
Board Tools
Tool | Description | Parameters |
| Get all boards for the current user | None |
| Get a Trello board by name |
|
| Get a Trello board by ID |
|
| Get all lists for a specific board |
|
| Get all cards for a specific board |
|
List Tools
Tool | Description | Parameters |
| Get a Trello list by ID |
|
| Get all cards for a specific list |
|
Card Tools
Tool | Description | Parameters |
| Create a new Trello card |
|
| Update an existing Trello card |
|
| Delete a Trello card |
|
| Add a comment to a card |
|
| Add an attachment to a card |
|
| Move a card to a different list |
|
Example Usage
Here's how an AI assistant can interact with Trello through this MCP server:
Natural Language Commands
"Show me all my Trello boards" → Lists all available boards
"Find the 'Project Alpha' board" → Searches for a specific board by name
"What lists are in my project board?" → Retrieves all lists within a board
"Create a new task card in the 'To Do' list" → Adds a new card to a specific list
"Update the 'Fix bug' card description" → Modifies existing card details
"Move the 'Review PR' card to 'Done'" → Moves cards between lists
"Add a comment to card XYZ" → Adds comments to existing cards
"Delete the completed card ABC" → Removes cards from boards
Workflow Management
The MCP server enables AI assistants to help with:
Project tracking: Moving cards through workflow stages
Task management: Creating, updating, and organizing cards
Team collaboration: Adding comments and managing card assignments
Board organization: Structuring lists and managing board content
Limitations
Note: This MCP server currently provides a limited set of Trello tools. More functionality will be added over time as the project evolves.
Support
For issues and questions:
Check the Trello API documentation
Review the project's issue tracker
Create a new issue if you encounter problems
Security Notes
Keep your API credentials secure and never share them
The token provides full access to your Trello account
Regularly rotate your API credentials
Monitor your API usage through Trello's interface
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/Adise211/trello-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server