Interact with Trello boards, lists, and cards using the Trello API.
A TypeScript implementation of a Model Context Protocol (MCP) server for Trello integration, providing tools for AI assistants to interact with Trello boards, lists, and cards.
# Install dependencies
make install
Create a .env
file in the root directory with your Trello credentials:
TRELLO_API_KEY=your_api_key
TRELLO_TOKEN=your_token
# Install dependencies
make install
# Build the project
make build
# Start the server
make start
# Clean build artifacts
make clean
# Run linter
make lint
Retrieves all Trello boards for the authenticated user.
// No input parameters required
Fetches all lists from a specified board.
{
"request": {
"board_id": string // ID of the board
}
}
Gets cards from a board or specific list.
{
"request": {
"board_id": string, // ID of the board
"list_id"?: string // Optional: ID of a specific list
}
}
Retrieves detailed information about a specific card.
{
"request": {
"card_id": string // ID of the card
}
}
The project uses TypeScript for type safety and better developer experience. The source code is organized as follows:
src/index.ts
- Main server entry pointsrc/trello-client.ts
- Trello API client implementationsrc/types.ts
- TypeScript type definitionsThe project uses TypeScript compiler for building:
# Build the project
make build
# The output will be in the build/ directory
The server implements comprehensive error handling for:
git checkout -b feature/amazing-feature
)git commit -m 'Add some amazing feature'
)git push origin feature/amazing-feature
)To use this MCP server with Cline, add the following configuration to your Cline MCP settings file (~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
):
{
"mcpServers": {
"trello-ts": {
"command": "node",
"args": ["/path/to/mcp-server-ts-trello/build/index.js"],
"env": {
"TRELLO_API_KEY": "your_api_key",
"TRELLO_TOKEN": "your_token"
}
}
}
}
After adding the configuration and restarting Cline, you can use the following MCP tools:
get_boards
: List all Trello boardsget_lists
: Get lists from a boardget_cards
: Get cards from a board or listget_card_details
: Get detailed card informationISC License - See LICENSE file for details
Miro MCP server, exposing all functionalities available in official Miro SDK.
Manage Zendesk tickets and comments, analyze tickets, draft responses, and access Help Center articles as a knowledge base.
Interact with data in Attio, the AI-native CRM, enabling AI assistants to access and manage your customer relationship information.
An MCP Server Integration with Apple Shortcuts
An optimized, read-only MCP server for the Notion API with asynchronous processing.
Convert Markdown files to high-quality, print-ready PDFs using LaTeX.
An intelligent tutoring server that uses GitHub documentation repositories to provide structured educational prompts and tools.
Shipment tracking api and logistics management capabilities through the TrackMage API
Fetch and summarize YouTube videos by extracting their titles, descriptions, and transcripts.
MCP server for seamless document format conversion using Pandoc, supporting Markdown, HTML, and plain text, with other formats like PDF, csv and docx in development.