โ† All skills
Tencent SkillHub ยท Developer Tools

Flower

Manage projects and tasks with the Flower project management API via MCP. Use when creating, updating, or searching tasks/tickets, managing projects and colu...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Manage projects and tasks with the Flower project management API via MCP. Use when creating, updating, or searching tasks/tickets, managing projects and colu...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.4

Documentation

ClawHub primary doc Primary doc: SKILL.md 13 sections Open source page

Flower MCP

Project management via MCP (Model Context Protocol).

Setup

Install the MCP server: npx -y @xferops/flower-mcp Configure in your MCP client (e.g., ~/.mcporter/mcporter.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.

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

Find a ticket by number

mcporter call flower.flower_search_tasks query="#123"

Create a task

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

Move task to different column

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

Add a comment

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)

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc