AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Trello Cli

mcp-scale-flow-trello-cli · by Scale-Flow

A CLI for Trello built for AI agents and Claude Code — includes a ready-to-use Claude Code skill for autonomous Trello management

No reviews yet
0 installs
32 views
0.0% view→install

Install

$ agentstack add mcp-scale-flow-trello-cli

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-scale-flow-trello-cli)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
6mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Trello Cli? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Trello CLI

[](https://github.com/Scale-Flow/trello-cli/actions/workflows/ci.yml) [](https://go.dev/) [](LICENSE) [](https://github.com/Scale-Flow/trello-cli/releases)

A CLI for Trello built for AI agents and Claude Code — every command returns structured JSON, making it ideal for autonomous workflows and agent-driven project management.

Includes a ready-to-use Claude Code skill so Claude can manage your Trello boards, cards, and lists out of the box.

Highlights

  • Agent-first design — stable JSON envelopes on every command for reliable tool use
  • Claude Code skill included — install once, and Claude can manage Trello autonomously
  • Broad command coverage: boards, lists, cards, comments, labels, members, checklists, attachments, custom fields, and search
  • Device flow login via Trello Connector Power-Up, with browser and manual fallbacks
  • Single-binary Go CLI with minimal runtime requirements

Installation

Homebrew (macOS / Linux)

brew tap Scale-Flow/tap
brew install trello-cli

Go Install

go install github.com/Scale-Flow/trello-cli/cmd/trello@latest

Download Binary

Download the latest release for your platform from GitHub Releases.

Claude Code Skill

This repo ships a Claude Code skill that lets Claude manage Trello autonomously — creating cards, moving work across lists, searching boards, and more.

Install the Skill

Add the skill to your project's .claude/settings.json:

{
  "skills": [
    "github:Scale-Flow/trello-cli//using-trello-cli"
  ]
}

Or install globally in ~/.claude/settings.json to use it across all projects.

Once installed, Claude Code will automatically use the skill whenever you ask it to interact with Trello. Try prompts like:

  • "Create a card on my Project board in the To Do list"
  • "Move all cards labeled 'done' to the Done list"
  • "Search for cards mentioning 'bug' across all boards"

> Note: The trello binary must be installed and authenticated (see below) for the skill to work.

Prerequisites: Trello API Key

Before using the CLI, you need a Trello API key and token:

  1. Log in to Trello
  2. Go to the Power-Up admin page
  3. Create a new Power-Up (it doesn't need to do anything — it's just the container for your API credentials)
  4. In your Power-Up's settings, go to the API Key tab and click Generate a new API Key
  5. Click the Token hyperlink next to your API key, approve the permissions, and copy the token

See [Getting Started](docs/getting-started.md) for the full walkthrough.

Quick Start

Authenticate via the Connector Power-Up (recommended — no API key needed):

trello auth login
# Enter the displayed pairing code in the CLI Connector Power-Up on your Trello board
trello auth status --pretty

Or store credentials manually:

trello auth set --api-key  --token 
trello auth status --pretty

List your boards:

trello boards list --pretty

Output Shape

Success:

{"ok":true,"data":{"version":"1.0.0","commit":"abc1234","date":"2026-03-13"}}

Error:

{"ok":false,"error":{"code":"VALIDATION_ERROR","message":"--board is required"}}

Use --pretty on any command to indent the JSON.

Common Commands

trello boards list
trello boards create --name "Project Alpha" --default-lists
trello lists list --board 
trello cards list --list 
trello cards create --list  --name "Follow up with customer"
trello search cards --query "customer"
trello custom-fields list --board 
trello custom-fields items set --card  --field  --text "value"

Documentation

  • [Getting Started](docs/getting-started.md)
  • [Authentication](docs/concepts/authentication.md)
  • [JSON Output](docs/concepts/json-output.md)
  • [Errors](docs/concepts/errors.md)
  • [Configuration](docs/concepts/configuration.md)
  • [Command Reference](docs/commands/README.md)
  • [Examples](docs/examples/create-a-card.md)
  • [LLM Digest](LLM.md)

Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup, PR process, and guidelines.

License

[MIT](LICENSE)

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.