Trello MCP Server
This read-only MCP server enables users to query Trello data, including boards, lists, cards, checklists, and board activity, through the Trello REST API.
README
Trello MCP server
This is a read-only first version of a FastMCP server backed by the Trello REST API.
Tools
list_boardsfind_boardlist_board_listslist_board_cardslist_list_cardsget_cardget_card_membersget_card_checklistsget_completed_check_itemsget_board_activity
The deployed server receives TRELLO_API_KEY and TRELLO_TOKEN from Google
Cloud Secret Manager through its Cloud Run configuration. These credentials
must not be stored in this repository or added to .env.example. MCP clients
only need the server URL and their Cloud Run authentication credentials.
Test the remote MCP server
The private Cloud Run service can be tested with the included client. It uses
your local gcloud auth print-identity-token credentials and does not access
the Trello secrets.
cp .env.example .env
# Set MCP_URL in .env to your deployed /mcp endpoint.
python client.py
python client.py list_boards
python client.py find_board \
--args-json '{"board_name":"project_architecture"}'
The ignored .env file supplies MCP_URL. You can still use --url to test
another deployment. In an environment without gcloud, provide a short-lived
token through MCP_BEARER_TOKEN.
Run locally
Running the server itself locally still requires Trello credentials. Supply
them through your shell or a private, ignored .env file; never commit them.
pip install -e ".[dev]"
TRELLO_API_KEY=... TRELLO_TOKEN=... python server.py
The HTTP MCP endpoint is available at http://localhost:8080/mcp.
For a local stdio client, use FastMCP's CLI against server.py or change the
mcp.run transport in the __main__ block to stdio.
Deploy on Cloud Run
Build and deploy from this directory. Cloud Run supplies PORT; the container
binds to 0.0.0.0 and exposes the MCP endpoint at /mcp.
The service should be protected with Cloud Run authentication or an MCP authentication layer before it is exposed publicly.
Recommended Servers
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.
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.
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.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
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.
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.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
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.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.