Trello MCP Server avatar

Trello MCP Server

Pricing

from $30.00 / 1,000 get cards

Go to Apify Store
Trello MCP Server

Trello MCP Server

Stop switching tabs. The Trello MCP Server connects Claude, Cursor, Windsurf, and VS Code to your Trello boards via the Model Context Protocol (MCP). Create cards, move tasks between columns, add comments, and check sprint status, all in natural language, without leaving your AI chat.

Pricing

from $30.00 / 1,000 get cards

Rating

0.0

(0)

Developer

LIAICHI MUSTAPHA

LIAICHI MUSTAPHA

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

3 days ago

Last modified

Share

๐Ÿƒ Trello MCP Server

The first MCP server that connects your AI assistant directly to Trello โ€” manage boards, cards, and Kanban flows without ever leaving your AI chat.

Apify Actor MCP Trello API

About this MCP Server: To understand how to connect to and use this MCP server, please refer to the official Model Context Protocol documentation at mcp.apify.com โ†—.


๐ŸŽฏ Why This Exists

Every developer, product manager, and team using AI tools faces the same problem: constant context switching.

You're deep in a conversation with Claude or coding in Cursor, you spot a bug or remember a task โ€” and then you have to stop, open a new tab, navigate to Trello, find the right board and list, create a card, and switch back. That's 4โ€“6 mental context switches for a 5-second task.

The Trello MCP Server eliminates this entirely. Your AI assistant talks directly to your Trello workspace through the Model Context Protocol. Create cards, move tasks, add comments, check your Kanban board โ€” all through a single natural language instruction.

The AI + Project Management Gap

ToolMCP Available?Hosted (no server needed)?
Jiraโœ… Jira MCP Serverโœ…
Trelloโœ… This Actorโœ…
AsanaโŒโŒ
NotionPartialโŒ
LinearโŒโŒ

Trello has over 100 million registered users โ€” and this is the only hosted, serverless MCP server for it on the Apify Store.


โšก What It Does

The Trello MCP Server runs as an Apify Actor in standby mode, serving as a persistent MCP endpoint. It authenticates with Trello using your API Key + Token and exposes 9 tools to any MCP-compatible AI assistant.

๐Ÿ› ๏ธ Available Tools

ToolDescription
get_boardsList all Trello boards accessible to the authenticated user
get_listsGet all lists (columns) on a board โ€” e.g. To Do, In Progress, Done
get_cardsGet cards from a board or a specific list
get_cardFull card details including description, labels, and recent comments
create_cardCreate a new card in any list with optional description and due date
update_cardUpdate card name, description, due date, or archive it
add_commentPost a comment on a card
move_cardMove a card to a different list to advance the Kanban flow
get_membersList all members of a board for card assignment

๐ŸŒณ When to Use Which Tool

Exploring your workspace?
โ””โ”€โ”€ get_boards โ†’ get_lists โ†’ get_cards
Need details on a specific card?
โ””โ”€โ”€ get_card (returns description, labels, recent comments)
Taking action?
โ”œโ”€โ”€ New task โ†’ create_card (needs listId from get_lists)
โ”œโ”€โ”€ Update details โ†’ update_card
โ”œโ”€โ”€ Move columns โ†’ move_card (needs listId from get_lists)
โ””โ”€โ”€ Leave a note โ†’ add_comment
Assigning cards?
โ””โ”€โ”€ get_members โ†’ use memberId in create_card or update_card

๐Ÿ’ก Who Is This For?

๐Ÿ‘จโ€๐Ÿ’ป Developers Using Cursor, Windsurf, or VS Code

"I just found a bug while coding โ€” let me create a Trello card without stopping."

Stay in your IDE. Have your AI assistant log bugs, create feature requests, or move cards to "Done" as you complete work โ€” all without leaving your coding environment.

๐Ÿค– Claude Desktop Users

"Help me plan my week using my Trello board."

Ask Claude to check your Backlog, show what's In Progress, create new tasks from your notes, and set due dates โ€” all in one conversation.

๐Ÿƒ Agile Teams & Freelancers

"Move all cards in Review to Done and add a comment with today's date."

Perform batch Kanban operations through your AI assistant. Update multiple cards, add standup notes, or create a sprint's worth of cards from a list โ€” in seconds.

๐Ÿง  AI Automation Builders

"I want my AI agent to automatically create Trello cards from customer support emails."

Use this Actor as the Trello integration node in your AI agent or n8n/Make.com automation workflow. Programmatic access via the Apify API makes it easy to trigger card creation from any source.


๐Ÿ”— Connection URL

https://mcp-servers--trello-mcp-server.apify.actor/mcp?token=YOUR_APIFY_TOKEN

Replace YOUR_APIFY_TOKEN with your Apify API token.


๐Ÿš€ Setup Guide

Step 1 โ€” Get Your Trello API Key & Token

  1. Go to https://trello.com/app-key
  2. Copy your API Key (shown at the top of the page)
  3. Click the Token link on the same page โ†’ click Allow โ†’ copy your Token

The Token gives read/write access to your Trello boards on your behalf. It never expires unless you revoke it manually.

Step 2 โ€” Connect Your AI Assistant

๐Ÿ–ฑ๏ธ Cursor

Add to ~/.cursor/mcp.json:

{
"mcpServers": {
"trello": {
"url": "https://mcp-servers--trello-mcp-server.apify.actor/mcp?token=YOUR_APIFY_TOKEN"
}
}
}

๐Ÿ’ป VS Code

Add to .vscode/mcp.json:

{
"servers": {
"trello": {
"type": "http",
"url": "https://mcp-servers--trello-mcp-server.apify.actor/mcp?token=YOUR_APIFY_TOKEN"
}
}
}

๐ŸŒŠ Windsurf

Add to ~/.codeium/windsurf/model_config.json:

{
"mcpServers": {
"trello": {
"serverUrl": "https://mcp-servers--trello-mcp-server.apify.actor/mcp?token=YOUR_APIFY_TOKEN"
}
}
}

๐Ÿค– Claude Desktop

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
"mcpServers": {
"trello": {
"url": "https://mcp-servers--trello-mcp-server.apify.actor/mcp?token=YOUR_APIFY_TOKEN"
}
}
}

Step 3 โ€” Enter Trello Credentials in Actor Input

When running this Actor on Apify, enter your Trello API Key and Token in the Actor input form. The server authenticates using these credentials for the duration of the Actor run.


๐Ÿ’ก Example Prompts

Try these once connected to your AI assistant:

Say this...Tool(s) Used
"What Trello boards do I have?"get_boards
"Show me the columns on my Dev board"get_lists
"What cards are in my To Do list?"get_cards
"Show me the full details of card [ID]"get_card
"Create a card 'Fix navbar alignment bug' in my Backlog"create_card
"Move 'Fix navbar alignment bug' to In Progress"move_card
"Mark it as Done"move_card
"Add a comment: Resolved in PR #42"add_comment
"Who are the members of my team board?"get_members
"Set the due date of card [ID] to next Friday"update_card
"Archive card [ID]"update_card

๐Ÿค– API & Automation

Trigger via Apify API

You can also trigger the actor programmatically and use it as a Trello integration in your own automations:

Node.js

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });
// Start the Trello MCP Server
const run = await client.actor('scraper_guru/trello-mcp-server').start({
trelloApiKey: 'YOUR_TRELLO_API_KEY',
trelloApiToken: 'YOUR_TRELLO_API_TOKEN',
});
console.log(`MCP Server running at: ${run.defaultDatasetId}`);

Python

from apify_client import ApifyClient
client = ApifyClient('YOUR_APIFY_TOKEN')
run = client.actor('scraper_guru/trello-mcp-server').start(
run_input={
'trelloApiKey': 'YOUR_TRELLO_API_KEY',
'trelloApiToken': 'YOUR_TRELLO_API_TOKEN',
}
)

Integrate With Automation Platforms

PlatformFlow
n8nHTTP Request Node โ†’ Trello MCP Server โ†’ Create Card
Make.comHTTP Module โ†’ Actor API โ†’ Parse Response
ZapierWebhooks โ†’ Apify API โ†’ Card Created
Custom AgentLangChain / CrewAI โ†’ MCP Tool โ†’ Trello

๐Ÿ’ฐ Pricing

Pay per event. No monthly subscription. No idle costs โ€” the Actor charges only when a tool is actually called by your AI assistant.

EventPrice per call
Actor start$0.00005 (Apify platform default)
get_boards$0.03
get_lists$0.03
get_cards$0.03
get_card$0.03
get_members$0.03
add_comment$0.03
update_card$0.05
move_card$0.05
create_card$0.08

A typical AI session managing a full sprint typically costs less than $0.50.


๐Ÿ›ก๏ธ Security

  • Your API Key and Token are never stored โ€” provided per-Actor-run via encrypted input
  • All communication is over HTTPS
  • The Actor runs in a fully isolated container on Apify's infrastructure
  • Your Trello data is never cached, logged, or shared

๐Ÿ”ฎ Roadmap

  • Checklists โ€” Read and update checklist items on cards
  • Attachments โ€” List and add attachments to cards
  • Labels โ€” Create and manage board labels
  • Webhooks โ€” Real-time event streaming for card changes
  • Search โ€” Full-text search across all cards and boards

๐Ÿค Part of the MCP Server Suite

This Actor is part of a growing suite of production-ready MCP servers on Apify:

ActorServiceStatus
Jira MCP ServerJira Cloudโœ… Live
Trello MCP ServerTrelloโœ… This Actor
Asana MCP ServerAsana๐Ÿ“‹ Coming soon
Confluence MCP ServerConfluence๐Ÿ“‹ Coming soon

The vision: A complete suite of project management MCP servers โ€” so your AI assistant can manage work wherever your team lives.


๐Ÿ’ฌ Support & Contact


๐Ÿ“š References


๐Ÿš€ Get Started Now

  1. Click "Try for free" above
  2. Enter your Trello API Key and Token in the input form
  3. Copy the MCP endpoint URL and paste it into your AI assistant config
  4. Start chatting โ€” "Show me my Trello boards"

โญ Found this useful? Leave a review โ€” it helps others discover it!

๐Ÿ’ฌ Questions or feature requests? Open a GitHub issue or email me directly.


Built by MuLIAICHI โ€” AI Engineer building the MCP layer for developer productivity tools. Also check out: Jira MCP Server