MCP.so
Sign In

Trello MCP Server (TypeScript)

@andypost

About Trello MCP Server (TypeScript)

TypeScript implementation of a Model Context Protocol (MCP) server for Trello integration

Basic information

Category

Other

Transports

stdio

Publisher

andypost

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "mcpServers": {
    "trello-ts": {
      "command": "node",
      "args": [
        "/path/to/mcp-server-ts-trello/build/index.js"
      ],
      "env": {
        "TRELLO_API_KEY": "",
        "TRELLO_TOKEN": ""
      }
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

What is Trello MCP Server (TypeScript)?

A TypeScript implementation of a Model Context Protocol (MCP) server for Trello integration. It provides tools for AI assistants to interact with Trello boards, lists, and cards via the Trello API.

How to use Trello MCP Server (TypeScript)?

Install dependencies with make install, create a .env file with your TRELLO_API_KEY and TRELLO_TOKEN, then build with make build and start with make start. Configure the server in your Cline MCP settings file and use the available tools such as get_boards, get_lists, get_cards, and get_card_details.

Key features of Trello MCP Server (TypeScript)

  • Full Trello API integration through MCP tools
  • Asynchronous operations for better performance
  • Type-safe implementation using TypeScript
  • Comprehensive error handling
  • Environment-based configuration

Use cases of Trello MCP Server (TypeScript)

  • AI assistant retrieves all Trello boards for a user
  • Fetches lists from a specific board to organize workflow
  • Gets cards from a board or specific list for task management
  • Retrieves detailed card information for review or update

FAQ from Trello MCP Server (TypeScript)

What prerequisites are needed?

Node.js 18.x or higher, npm or yarn, and valid Trello API credentials (API key and token).

How do I configure the server?

Create a .env file in the root directory with TRELLO_API_KEY and TRELLO_TOKEN values.

What MCP tools are available?

The server provides four tools: get_boards, get_lists, get_cards, and get_card_details.

How do I use it with Cline?

Add a configuration entry to your Cline MCP settings JSON with the command node, the path to the built index.js, and environment variables for your Trello credentials.

What error handling does it include?

The server handles API authentication errors, rate limiting, network issues, and invalid request parameters.

Comments

More Other MCP servers