Skip to main content
Glama

Trello MCP Server

This is a Model Context Protocol (MCP) server for interacting with Trello API.

Setup

  1. Clone the repository:

git clone https://github.com/r123singh/trello-mcp-server.git
  1. cd trello-mcp-server

  2. Create a virtual environment:

python -m venv venv
  1. Activate the virtual environment:

source venv/bin/activate
  1. Install dependencies:

pip install -r requirements.txt
  1. Configure your environment variables: Create a .env file with:

TRELLO_API_KEY=your_trello_api_key
TRELLO_API_TOKEN=your_trello_token
  1. Configure MCP JSON: Create a mcp.json file with:

{
  "mcpServers": {
    "trello": {
      "command": "{PATH_TO_DIRECTORY}\\trello-mcp-server\\venv\\Scripts\\python.exe", 
      "args": [
        "{PATH_TO_DIRECTORY}\\trello-mcp-server\\server.py"
      ],
      "env": {
        "TRELLO_API_KEY": "your_trello_api_key",
        "TRELLO_API_TOKEN": "your_trello_token"
      }
    }
  }
}

Replace:

  • {{PATH_TO_DIRECTORY}} with the absolute path to this directory (use pwd command)

  • Add your API keys and tokens

To get Trello credentials:

Related MCP server: Trello MCP Server

Available Tools

The server provides the following tools for interacting with Trello:

  • Get all boards

  • Get board details

  • Get lists in a board

  • Get cards in a list

  • Get card details

  • Create new cards

  • Update existing cards

  • Move cards between lists

  • Add comments to cards

  • Get board members

Usage

Once configured, the MCP server can be started using the standard MCP client configuration. The server provides a natural language interface to interact with Trello through the available tools such as Cursor, Claude Desktop

Contributing

Contributions are welcome! Please open an issue or submit a pull request.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables interaction with Trello boards, lists, and cards through the Trello REST API. Supports board management, card operations, member management, labels, and checklists through natural language.
    285 npm
    1
    ISC
  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides seamless integration with Trello's API to manage boards, lists, and cards through natural language. It supports full CRUD operations, card movement, and the ability to load Trello resources directly into an LLM's context for analysis.
    MIT