Skip to content

Tools Overview

Fizzy MCP provides 70+ tools for managing your Fizzy boards, cards, and collaboration.

Tool Categories

Identity & Account

ToolDescription
fizzy_get_identityGet current user identity and accessible accounts
fizzy_get_accountGet account settings and configuration

Boards

ToolDescription
fizzy_list_boardsList all boards you have access to
fizzy_get_boardGet details of a specific board
fizzy_create_boardCreate a new board
fizzy_update_boardUpdate board settings
fizzy_delete_boardDelete a board (admin only)
fizzy_publish_boardMake a board publicly accessible
fizzy_unpublish_boardRemove public access

Cards

ToolDescription
fizzy_list_cardsList cards with optional filters
fizzy_get_cardGet details of a specific card
fizzy_create_cardCreate a new card
fizzy_update_cardUpdate card title, description, tags
fizzy_delete_cardDelete a card
fizzy_close_cardMark a card as complete
fizzy_reopen_cardReopen a closed card
fizzy_postpone_cardMove card to "Not Now"
fizzy_triage_cardMove card to a specific column
fizzy_untriage_cardSend card back to triage
fizzy_tag_cardToggle a tag on a card
fizzy_assign_cardToggle user assignment
fizzy_watch_cardSubscribe to card notifications
fizzy_unwatch_cardUnsubscribe from notifications
fizzy_pin_cardPin card for quick access
fizzy_unpin_cardUnpin a card
fizzy_mark_goldenMark card as important
fizzy_unmark_goldenRemove golden status

Comments

ToolDescription
fizzy_list_commentsList comments on a card
fizzy_get_commentGet a specific comment
fizzy_create_commentAdd a comment to a card
fizzy_update_commentEdit a comment
fizzy_delete_commentDelete a comment

Columns

ToolDescription
fizzy_list_columnsList columns on a board
fizzy_get_columnGet column details
fizzy_create_columnCreate a new column
fizzy_update_columnUpdate column name/color
fizzy_delete_columnDelete a column

Tags & Users

ToolDescription
fizzy_list_tagsList all tags in the account
fizzy_list_usersList all users in the account
fizzy_get_userGet user details

Reactions

ToolDescription
fizzy_list_reactionsList reactions on a card or comment
fizzy_create_reactionAdd a reaction to a card or comment
fizzy_delete_reactionRemove a reaction

Steps

ToolDescription
fizzy_list_stepsList checklist steps on a card
fizzy_get_stepGet step details
fizzy_create_stepAdd a checklist step to a card
fizzy_update_stepUpdate step text or completion
fizzy_delete_stepDelete a step

Notifications

ToolDescription
fizzy_list_notificationsList user notifications
fizzy_get_notificationGet notification details
fizzy_mark_readMark a notification as read
fizzy_mark_all_readMark all notifications as read
fizzy_unread_countGet count of unread notifications

Webhooks

ToolDescription
fizzy_list_webhooksList configured webhooks
fizzy_get_webhookGet webhook details
fizzy_create_webhookCreate a new webhook
fizzy_update_webhookUpdate webhook settings
fizzy_delete_webhookDelete a webhook
fizzy_test_webhookSend a test event to a webhook

Project Manager

ToolDescription
fizzy_pm_actionable_cardsGet cards ready for AI work
fizzy_pm_project_contextGet comprehensive project context
fizzy_pm_report_progressReport progress on a card
fizzy_pm_start_sessionStart a tracked work session
fizzy_pm_end_sessionEnd a work session with summary

Common Parameters

Card Filters

When listing cards, you can filter by:

ParameterTypeDescription
board_idsstring[]Filter by board(s)
tag_idsstring[]Filter by tag(s)
assignee_idsstring[]Filter by assignee(s)
indexed_bystringFilter by state
sorted_bystringSort order
termsstring[]Search terms

Card States (indexed_by)

ValueDescription
allAll open cards
closedCompleted cards
not_nowPostponed cards
stalledCards with no recent activity
postponing_soonCards about to auto-postpone
goldenImportant/golden cards

Sort Orders (sorted_by)

ValueDescription
latestMost recently updated first
newestMost recently created first
oldestOldest created first

Example Usage

List Cards on a Board

AI calls: fizzy_list_cards
Parameters: { board_ids: ["board_123"] }

Returns: Array of cards with titles, tags, assignees, status

Create a Card

AI calls: fizzy_create_card
Parameters: {
  board_id: "board_123",
  title: "Implement feature X",
  description: "## Requirements\n- Item 1\n- Item 2",
  tag_ids: ["tag_456", "tag_789"]
}

Returns: Created card with number, URL

Move Card to Column

AI calls: fizzy_triage_card
Parameters: {
  card_number: 123,
  column_id: "col_456"
}

Returns: Updated card

Add Comment

AI calls: fizzy_create_comment
Parameters: {
  card_number: 123,
  body: "Progress update: Feature is 80% complete"
}

Returns: Created comment

Markdown Support

Card descriptions and comments support:

  • Bold and italic text
  • Links
  • Bullet and numbered lists
  • inline code and code blocks
  • Basic HTML

Error Handling

All tools return consistent error formats:

json
{
  "error": true,
  "message": "Card not found",
  "code": "NOT_FOUND"
}

Common error codes:

  • NOT_FOUND - Resource doesn't exist
  • FORBIDDEN - No permission
  • INVALID_INPUT - Bad parameters
  • RATE_LIMITED - Too many requests