Jimdrews/fastmcp-trello
A Trello MCP server — manage boards, cards, and lists from any AI assistant
Platform-specific configuration:
{
"mcpServers": {
"fastmcp-trello": {
"command": "npx",
"args": [
"-y",
"fastmcp-trello"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
[](https://pypi.org/project/fastmcp-trello/) [](https://pypi.org/project/fastmcp-trello/) [](https://github.com/Jimdrews/fastmcp-trello/actions/workflows/ci.yml) [](https://opensource.org/licenses/MIT)
A Trello MCP server — manage boards, cards, and lists from any AI assistant that supports the Model Context Protocol.
| Tool | Description | |---|---| | get_boards | List all boards accessible to you | | get_board | Get a board's details including its lists | | get_lists | Get all open lists on a board | | get_cards | Get all cards in a list | | get_card | Get full details for a card including comments | | create_card | Create a new card on a list | | update_card | Update a card's fields or move it to a different list | | archive_card | Archive (close) a card | | add_comment | Add a comment to a card | | search_cards | Search for cards across boards, optionally scoped to a specific board |
You need a Trello API key and token:
Add to your Claude Desktop configuration file (claude_desktop_config.json):
{
"mcpServers": {
"trello": {
"command": "uvx",
"args": ["fastmcp-trello"],
"env": {
"TRELLO_API_KEY": "your-api-key",
"TRELLO_TOKEN": "your-token"
}
}
}
}Add to your VS Code MCP settings (.vscode/mcp.json):
{
"servers": {
"trello": {
Loading reviews...