Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables natural language management of a Trello board for Fortis robotics, including card creation, moving, blocking, weekly recurring tasks, and more.

README.md

fortis-trello-mcp

MCP server that lets Claude Desktop manage our Fortis robotics Trello board. Talk to Claude in plain english and it handles cards, assignments, labels, blocking, weekly recurring tasks, etc.

Setup

You need Node.js installed (v20+).

git clone git@github.com:nthankas/fortis-trello-mcp.git
cd fortis-trello-mcp
npm install
npm run build

Then you need three things from Trello:

  • API Key — get it at https://trello.com/power-ups/admin (click "New", grab the API key)
  • Token — on that same page, click "Token" next to your key and authorize it
  • Board ID — open the board in a browser, the ID is in the URL: trello.com/b/{THIS_PART}/...

Add this to your Claude Desktop config file (claude_desktop_config.json):

  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "fortis-trello": {
      "command": "node",
      "args": ["/absolute/path/to/fortis-trello-mcp/dist/index.js"],
      "env": {
        "TRELLO_API_KEY": "your-api-key",
        "TRELLO_TOKEN": "your-token",
        "TRELLO_BOARD_ID": "your-board-id"
      }
    }
  }
}

Replace the path in args with wherever you cloned the repo. Restart Claude Desktop.

What you can do

Just talk to Claude naturally. Some examples:

  • "show me the board"
  • "what's in the backlog?"
  • "add a card called 'redesign motor mount' to This Sprint, assign NT and RC, label Chassis, due Friday"
  • "move motor mount to In Progress"
  • "mark motor mount as done"
  • "block sensor calibration — waiting on IMU shipment"
  • "unblock sensor calibration, put it back in This Sprint"
  • "create this week's recurring cards"
  • "search for anything about wiring"
  • "archive old prototype test"

Card names are fuzzy matched so you don't have to type them exactly. Members are referenced by initials (NT, AP, CP, RC, CC) and labels by subsystem name (Simulation, Chassis, Arm, Embedded/Compute, Power/Electrical, Winch/Tether, Documentation, Procurement).

Tools

| Tool | What it does | |------|-------------| | get_board_overview | snapshot of all lists + card details for active lists | | get_cards_in_list | all cards in a specific list | | add_card | create a card with name, list, description, due date, members, labels | | move_card | move a card between lists | | complete_card | mark done, auto-routes to the right Done list by subsystem label | | update_card | change name, description, due date, add/remove members or labels | | block_card | move to Blocked with a reason | | unblock_card | move out of Blocked | | create_weekly_recurring | generates weekly task cards (reports, gantt, trello maintenance) | | search_cards | search card names and descriptions | | archive_card | archive a card |

Notes

  • Trello API calls are rate-limited to 10/sec
  • Board metadata (lists, labels, members) is cached for 60 seconds
  • Never hardcode API keys — they go in the Claude Desktop config as env vars

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Productivity servers.