Advanced Trello MCP Server
An enhanced Model Context Protocol server providing comprehensive integration between Trello and Cursor AI with 40+ tools covering multiple Trello API categories for complete project management.
Tools
get-boards
get-lists
create-list
update-list
archive-list
move-list-to-board
get-list-actions
get-list-board
get-list-cards
archive-all-cards-in-list
move-all-cards-in-list
create-card
create-cards
README
🚀 Advanced Trello MCP Server
Enhanced Model Context Protocol Server for Trello integration with Cursor AI
Complete API coverage with 40+ tools and enterprise-grade features
📋 Overview
This is an enhanced version of the Trello MCP Server that provides comprehensive integration between Trello and Cursor AI. Originally supporting 15 basic tools, this version has been expanded to 44+ tools covering multiple Trello API categories with enterprise-grade functionality.
✨ Features
🎯 Complete API Coverage
- Actions API: 16 tools (Complete audit trail, reactions, comments)
- Lists API: 9 tools (Complete list management)
- Cards API: 8 tools (Enhanced card operations)
- Labels API: 8 tools (Complete label management) ✅
- Boards API: 1 tool (Basic board access)
🔧 Enterprise Features
- TypeScript Implementation with strict typing
- Zod Validation for all inputs and outputs
- Batch Operations for bulk actions
- Error Handling with detailed error messages
- Rate Limiting Ready architecture
- Extensible Design for future API additions
🚀 Quick Start
Prerequisites
- Node.js 18+
- Trello API Key and Token
- Cursor AI with MCP support
Installation
-
Clone the repository
git clone https://github.com/adriangrahldev/advanced-trello-mcp-server.git cd advanced-trello-mcp-server -
Install dependencies
npm install -
Build the project
npm run build -
Configure environment variables
export TRELLO_API_KEY="your_api_key" export TRELLO_API_TOKEN="your_api_token" -
Configure Cursor MCP Add to your
~/.cursor/mcp.json:{ "servers": { "trello": { "command": "/path/to/advanced-trello-mcp-server/build/index.js", "env": { "TRELLO_API_KEY": "your_api_key", "TRELLO_API_TOKEN": "your_api_token" } } } }
🛠️ Available Tools
📋 Lists Management (9 tools)
get-lists- Get all lists from a boardcreate-list- Create new listupdate-list- Update list propertiesarchive-list- Archive/unarchive listsmove-list-to-board- Move lists between boardsget-list-actions- Get list action historyget-list-board- Get board information from listget-list-cards- Get cards from list with filteringarchive-all-cards-in-list- Archive all cards in listmove-all-cards-in-list- Move all cards between lists
🎯 Cards Management (8 tools)
create-card- Create single cardcreate-cards- Create multiple cards (batch)move-card- Move card between listsmove-cards- Move multiple cards (batch)archive-card- Archive single cardarchive-cards- Archive multiple cards (batch)get-tickets-by-list- Get cards from specific listadd-comment- Add comment to card
🏷️ Labels Management (8 tools) ✅ COMPLETE
create-label- Create single labelcreate-labels- Create multiple labels (batch)add-label- Add label to cardadd-labels- Add labels to multiple cards (batch)get-label- Get detailed label informationupdate-label- Update label name and colordelete-label- Delete label by IDupdate-label-field- Update specific label field
📊 Actions & Audit (16 tools)
get-action- Get detailed action informationupdate-action- Update action (comments)delete-action- Delete action (comments only)get-action-field- Get specific action fieldget-action-board- Get board from actionget-action-card- Get card from actionget-action-list- Get list from actionget-action-member- Get member from actionget-action-member-creator- Get action creatorget-action-organization- Get organization from actionupdate-comment-action- Update comment textget-action-reactions- Get action reactionscreate-action-reaction- Add reaction to actionget-action-reaction- Get specific reactiondelete-action-reaction- Remove reactionget-action-reactions-summary- Get reactions summary
🏢 Boards Management (1 tool)
get-boards- Get all accessible boards
📈 Roadmap
This project follows a strategic 6-phase expansion plan to achieve 100% Trello API coverage:
Phase 1: Foundation (In Progress - 1/3 Complete)
- ✅ Complete Lists API (9 tools)
- ✅ Complete Actions API (16 tools)
- ✅ Complete Labels API (8 tools) DONE!
- 🔄 Enhanced Cards API (15 more tools needed)
- 🔄 Enhanced Boards API (8 more tools needed)
Phase 2: Productivity (Planned)
- Checklists API (12 tools)
- Search API (3 tools)
- Emoji API (2 tools)
Phase 3: Collaboration (Planned)
- Members API (20 tools)
- Organizations API (15 tools)
Phase 4: Automation (Planned)
- Batch API (3 tools)
- CustomFields API (12 tools)
- Webhooks API (8 tools)
Phase 5: Advanced Management (Planned)
- Notifications API (10 tools)
- Plugins API (8 tools)
- Tokens API (6 tools)
Phase 6: Enterprise (Planned)
- Enterprises API (12 tools)
- Applications API (4 tools)
Target: 182 total tools (currently at 44)
🔧 Development
Project Structure
advanced-trello-mcp-server/
├── src/
│ └── index.ts # Main MCP server implementation
├── build/
│ └── index.js # Compiled JavaScript (executable)
├── package.json # Dependencies and scripts
├── tsconfig.json # TypeScript configuration
└── README.md # This file
Building
npm run build
Development Workflow
- Make changes in
src/index.ts - Run
npm run buildto compile - Test with Cursor AI
- Commit changes with conventional commits
🤝 Contributing
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'feat: add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Commit Convention
We use Conventional Commits:
feat:- New featuresfix:- Bug fixesdocs:- Documentation changesrefactor:- Code refactoringtest:- Adding testschore:- Maintenance tasks
📚 API Documentation
This server implements tools based on the official Trello REST API documentation. Each tool includes:
- Zod schema validation for type safety
- Comprehensive error handling
- Optional parameters support
- Batch operations where applicable
- Detailed JSDoc comments
🐛 Troubleshooting
Common Issues
1. "Trello API credentials are not configured"
- Ensure
TRELLO_API_KEYandTRELLO_API_TOKENare set - Verify the token has appropriate scopes (
readminimum,writefor modifications)
2. "Tool not found" errors
- Restart Cursor AI to refresh MCP server
- Verify the build was successful (
npm run build) - Check MCP configuration in
~/.cursor/mcp.json
3. Permission errors
- Verify your Trello token has access to the boards/cards you're trying to modify
- Some operations require
writescope, not justread
📄 License
This project is licensed under the MIT License - see the LICENSE file for details.
🙏 Acknowledgments
- Original Trello MCP Server by yairhaimo
- Trello API Documentation
- Model Context Protocol
- Cursor AI
📊 Stats
- Total Tools: 44 (vs 15 original)
- API Coverage: ~40% (target: 100%)
- Lines of Code: 2,500+ TypeScript
- Type Safety: 100% with Zod validation
- Documentation: Comprehensive inline docs
Built with ❤️ for the Cursor AI community
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。