Trello MCP server

Trello MCP server

Enables Claude to manage Trello boards, lists, and cards through natural language.

Category
Visit Server

README

Trello MCP server

A minimal remote MCP server that lets Claude manage your Trello boards, lists, and cards. Built with the MCP TypeScript SDK (Streamable HTTP transport, stateless mode).

Tools

  • list_boards — list your open boards
  • list_lists — lists (columns) on a board
  • list_cards — cards in a list
  • get_card — full card details
  • create_card — create a card in a list
  • update_card — edit / move / archive a card
  • comment_card — add a comment
  • search_cards — search cards across boards

1. Get Trello credentials

  1. API key: go to https://trello.com/power-ups/admin, create a Power-Up, open its API key tab, and copy the key. (The older https://trello.com/app-key may still work.)

  2. Token: visit this URL in your browser, replacing YOUR_KEY, then click Allow:

    https://trello.com/1/authorize?expiration=never&scope=read,write&response_type=token&name=Claude%20MCP&key=YOUR_KEY
    

    Copy the token it shows you.

scope=read,write grants Claude the ability to create/move/archive cards. Use scope=read if you want read-only.

2. Run locally (test)

cp .env.example .env      # fill in TRELLO_API_KEY, TRELLO_TOKEN, MCP_SECRET
npm install
npm run dev

Server prints the path it's serving (/mcp/<secret>).

3. Deploy

The server must be reachable over the public internet from Anthropic's cloud — it cannot be behind a VPN/firewall. Any Node host works (Railway, Render, Fly.io, a VPS).

Railway / Render (quick):

  1. Push this folder to a GitHub repo.
  2. Create a new service from the repo. Build: npm install && npm run build. Start: npm start. (Or use the included Dockerfile.)
  3. Set env vars: TRELLO_API_KEY, TRELLO_TOKEN, MCP_SECRET. The host sets PORT automatically.
  4. Note your public URL, e.g. https://trello-mcp.up.railway.app.

Your connector URL is then:

https://<your-host>/mcp/<MCP_SECRET>

4. Add to Claude (Team plan — Owner)

  1. Organization settings → Connectors → + Add → Custom.
  2. Name it (e.g. "Trello"), paste the connector URL from step 3.
  3. Save. Members can then enable it per chat via the + / Connectors button.

Security notes

  • The connector URL is the credential. On Team plans every member can see the connector URL, and Claude's MCP client doesn't send custom auth headers — that's why the secret lives in the URL path. Treat the URL like a password.
  • There is no per-user scoping: anyone with the URL acts as the single Trello account whose token you configured.
  • Use scope=read if you don't want Claude making changes.
  • Rotate by changing MCP_SECRET (and revoking the Trello token at https://trello.com/your/account) if the URL leaks.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured