npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mcp-trello-server

v0.1.0

Published

MCP server for Trello. Manage boards, lists, cards, labels, and checklists from any AI agent.

Readme

mcp-trello

MCP server for Trello. Manage boards, lists, cards, labels, and checklists from any AI agent.

No official or maintained MCP server exists for Trello. This is the first one.

Install

npm install -g mcp-trello

Or run directly with npx:

npx mcp-trello

Configuration

Get your Trello credentials

  1. API Key: Go to trello.com/power-ups/admin/ and copy your API key
  2. Token: Visit this URL (replace YOUR_KEY):
    https://trello.com/1/authorize?expiration=never&scope=read,write&response_type=token&key=YOUR_KEY

Add to your MCP client

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "trello": {
      "command": "npx",
      "args": ["-y", "mcp-trello"],
      "env": {
        "TRELLO_API_KEY": "your-key",
        "TRELLO_TOKEN": "your-token"
      }
    }
  }
}

Cursor (.cursor/mcp.json):

{
  "mcpServers": {
    "trello": {
      "command": "npx",
      "args": ["-y", "mcp-trello"],
      "env": {
        "TRELLO_API_KEY": "your-key",
        "TRELLO_TOKEN": "your-token"
      }
    }
  }
}

Gemini CLI (~/.config/gemini/settings.json):

{
  "mcpServers": {
    "trello": {
      "command": "npx",
      "args": ["-y", "mcp-trello"],
      "env": {
        "TRELLO_API_KEY": "your-key",
        "TRELLO_TOKEN": "your-token"
      }
    }
  }
}

Available Tools

Boards

| Tool | Description | |------|-------------| | list_boards | List all boards for the authenticated user | | get_board | Get details of a specific board (with lists, labels, members) | | create_board | Create a new board |

Lists

| Tool | Description | |------|-------------| | get_lists | Get all lists on a board | | create_list | Create a new list on a board | | archive_list | Archive or unarchive a list |

Cards

| Tool | Description | |------|-------------| | get_cards | Get all cards on a board or list | | get_card | Get a specific card with full details | | create_card | Create a new card | | update_card | Update a card's name, description, due date, or position | | move_card | Move a card to a different list | | delete_card | Delete a card |

Labels

| Tool | Description | |------|-------------| | get_labels | Get all labels on a board | | create_label | Create a new label | | add_label_to_card | Add a label to a card | | remove_label_from_card | Remove a label from a card |

Checklists

| Tool | Description | |------|-------------| | get_checklists | Get checklists on a card | | create_checklist | Create a checklist on a card | | add_checklist_item | Add an item to a checklist |

Comments

| Tool | Description | |------|-------------| | add_comment | Add a comment to a card |

Search

| Tool | Description | |------|-------------| | search | Search across all boards (cards, boards, members) |

Example Prompts

Once configured, ask your AI agent:

  • "Show me all cards in the Backlog list"
  • "Move the login bug card to In Progress"
  • "Create a card called 'Update dependencies' in the Sprint list"
  • "Add a comment to card abc123 saying 'Reviewed and approved'"
  • "Search for all cards mentioning 'authentication'"
  • "Create a new board called 'Q3 Roadmap'"

Development

git clone https://github.com/smarthomeo/mcp-trello.git
cd mcp-trello
npm install
npm test        # Run 72 tests
npm run build   # Build to dist/

License

MIT