Trello Knowledge MCP Server

Trello Knowledge MCP Server

An MCP server that utilizes Trello as a knowledge base for storing, searching, and retrieving code snippets and notes. It enables full CRUD operations and organized categorization of information using Trello boards and labels.

Category
Visit Server

README

Trello MCP Server

An MCP (Model Context Protocol) server that uses Trello as a knowledge base for storing and retrieving code snippets, notes, and other information.

Attention(!!)

Claude wrote this. I didnt verify line by line what it wrote. So be aware when using this and do your own review. I provide this repo as is and will not be responsible for any damages this causes.

Features

  • Store code snippets and notes as Trello cards
  • Search across card titles, descriptions, and labels
  • Organize knowledge by boards and lists
  • Tag-based categorization using Trello labels
  • Full CRUD operations on your knowledge base

Setup

Prerequisites: Make sure you have direnv installed for environment variable management.

  1. Get Trello API credentials:

    • First, create a Power-Up at https://trello.com/power-ups/admin (required for API access)
    • Go to your Power-Up's "API Key" tab and generate a new API key
    • Generate a Token by clicking the Token link (its hidden in the text)
    • Copy both your API Key and Token
  2. Create a Knowledge Board:

    • Create a new Trello board for your knowledge base
    • Create lists like "Code Snippets", "Configuration", "Notes", etc.
    • Copy the board ID from the URL
  3. Configure environment with direnv:

    # Edit .envrc with your Trello credentials
    # Make sure direnv is installed and allowed for this directory
    direnv allow
    
  4. Install and run:

    npm install
    npm start
    
  5. Configure Claude Desktop: Add this to your Claude Desktop configuration file:

    macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json Linux: ~/.config/Claude/claude_desktop_config.json

    {
      "mcpServers": {
        "trello-knowledge": {
          "command": "node",
          "args": ["src/index.js"],
          "cwd": "/path/to/your/trello-mcp-server",
          "env": {
            "TRELLO_API_KEY": "your_api_key_here",
            "TRELLO_TOKEN": "your_token_here",
            "TRELLO_KNOWLEDGE_BOARD_ID": "your_board_id_here"
          }
        }
      }
    }
    

    Windows PowerShell (if Node.js isn't in PATH):

    {
      "mcpServers": {
        "trello-knowledge": {
          "command": "C:\\Program Files\\nodejs\\node.exe",
          "args": ["C:\\Users\\YourUsername\\path\\to\\trello-mcp-server\\src\\index.js"],
          "env": {
            "TRELLO_API_KEY": "your_api_key_here",
            "TRELLO_TOKEN": "your_token_here",
            "TRELLO_KNOWLEDGE_BOARD_ID": "your_board_id_here"
          }
        }
      }
    }
    

    Alternative with direnv (if you want Claude Desktop to inherit your shell environment):

    {
      "mcpServers": {
        "trello-knowledge": {
          "command": "bash",
          "args": ["-c", "cd /path/to/your/trello-mcp-server && eval \"$(direnv export bash)\" && node src/index.js"],
          "cwd": "/path/to/your/trello-mcp-server"
        }
      }
    }
    
  6. Restart Claude Desktop for the changes to take effect.

Usage

Once connected to Claude Desktop, you can:

  • Store knowledge: "Remember that in Symfony, to prettify JSON responses, I use..."
  • Retrieve knowledge: "How did I handle JSON responses in Symfony?"
  • Search: "Show me all my Docker-related snippets"
  • Organize: Cards are automatically tagged and categorized

MCP Tools Available

  • store_knowledge - Save a new piece of information
  • search_knowledge - Find existing information
  • get_knowledge - Retrieve specific knowledge by ID
  • list_topics - Show all available topics/categories

License

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

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