Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Flower

ASecurity

Manage projects and tasks with the Flower project management API via MCP. Use when creating, updating, or searching tasks/tickets, managing projects and columns, or integrating with Flower/Kanban boards. Requires @xferops/flower-mcp and a Flower API token.

14 stars
0 votes
0 copies
1 views
Added 9/7/2026
businessbashgitapi

Works with

cliapimcp

Security Analysis

A100/100

Scanned 9/7/2026

Install to Claude Code

$npx -y skills add modbender/skill-library-mcp --skill flower --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Flower?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Flower
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/modbender-flower/badge)](https://www.skillsdirectory.com/skills/modbender-flower)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: flower
description: Manage projects and tasks with the Flower project management API via MCP. Use when creating, updating, or searching tasks/tickets, managing projects and columns, or integrating with Flower/Kanban boards. Requires @xferops/flower-mcp and a Flower API token.
---

# Flower MCP

Project management via MCP (Model Context Protocol).

## Setup

Install the MCP server:

```bash
npx -y @xferops/flower-mcp
```

Configure in your MCP client (e.g., `~/.mcporter/mcporter.json`):

```json
{
  "mcpServers": {
    "flower": {
      "command": "npx",
      "args": ["-y", "@xferops/flower-mcp"],
      "env": {
        "FLOWER_URL": "https://flower.xferops.com",
        "FLOWER_TOKEN": "your-api-token"
      }
    }
  }
}
```

Get your API token from Flower → Settings → API Tokens.

## Tools (25 total)

### Teams & Projects
- `flower_list_teams` — List all teams
- `flower_get_project` — Get project with columns and tasks
- `flower_list_projects` — List projects in a team

### Tasks
- `flower_list_tasks` — List tasks (filter by projectId, columnId, assigneeId)
- `flower_get_task` — Get task details
- `flower_create_task` — Create task (projectId, columnId, title required)
- `flower_update_task` — Update task fields
- `flower_delete_task` — Delete a task
- `flower_move_task` — Move to different column
- `flower_search_tasks` — Search by title, description, or ticket number

### Columns
- `flower_list_columns` — List columns in a project
- `flower_create_column` — Create a column
- `flower_update_column` — Update column name/position
- `flower_delete_column` — Delete a column

### Comments
- `flower_list_comments` — List comments on a task
- `flower_create_comment` — Add a comment
- `flower_update_comment` — Edit a comment
- `flower_delete_comment` — Delete a comment

### Users & Members
- `flower_list_users` — List all users
- `flower_get_current_user` — Get authenticated user
- `flower_list_team_members` — List team members
- `flower_add_team_member` — Add user to team
- `flower_remove_team_member` — Remove from team

### Notifications
- `flower_get_notification_preferences` — Get notification settings
- `flower_update_notification_preferences` — Update settings

## Common Patterns

### Find a ticket by number

```bash
mcporter call flower.flower_search_tasks query="#123"
```

### Create a task

```bash
mcporter call flower.flower_create_task \
  projectId=<id> \
  columnId=<id> \
  title="Task title" \
  description="Details" \
  priority=HIGH \
  type=BUG
```

### Move task to different column

```bash
mcporter call flower.flower_move_task \
  taskId=<id> \
  columnId=<new-column-id>
```

### Add a comment

```bash
mcporter call flower.flower_create_comment \
  taskId=<id> \
  content="Comment text"
```

## Field Values

**Priority:** `LOW`, `MEDIUM`, `HIGH`, `URGENT`

**Type:** `TASK`, `BUG`, `STORY`

**PR fields:** `prUrl`, `prNumber`, `prRepo` (for GitHub PR linking)

Attribution

modbendermodbender
View sourceMore from modbender →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Solution Architect

Designs system architecture, component specifications, and technical integration strategy. Use when: designing solutions, system architecture, technology stack, or integration approaches.

192 votes

Akorchak:Venture Assessment

Generate a comprehensive VC investment assessment report for a company

72 votes

Just Fucking Cancel

Find and cancel unwanted subscriptions by analyzing bank transactions. Detects recurring charges, calculates annual waste, and helps you cancel with direct URLs and browser automation. Use when: 'cancel subscriptions', 'audit subscriptions', 'find recurring charges', 'what am I paying for', 'save money', 'subscription cleanup', 'stop wasting money'. Supports CSV import (Apple Card, Chase, Amex, Citi, Bank of America, Capital One, Mint, Copilot) OR Plaid API for automatic transaction pull. Out...

6511 votes

Stock Analysis

Analyze stocks and cryptocurrencies using Yahoo Finance data. Supports portfolio management (create, add, remove assets), crypto analysis (Top 20 by market cap), and periodic performance reports (daily/weekly/monthly/quarterly/yearly). 8 analysis dimensions for stocks, 3 for crypto. Use for stock analysis, portfolio tracking, earnings reactions, or crypto monitoring.

6511 votes

Telegram Compose

Compose rich, readable Telegram messages using HTML formatting via direct Telegram API. Use when: (1) Sending any Telegram message beyond a simple one-line reply, (2) Creating structured messages with sections, lists, or status updates, (3) Need formatting unavailable via Clawdbot's Markdown conversion (underline, spoilers, expandable blockquotes, user mentions by ID), (4) Sending alerts, reports, summaries, or notifications to Telegram, (5) Want professional, scannable message formatting wit...

6511 votes
View all in business →