Fizzy Do MCP

67 tools. 43 can modify or destroy data without limits.

8 destructive tools with no built-in limits. Policy required.

Last updated:

43 can modify or destroy data
24 read-only
67 tools total

Community server · catalogue entry verified 29/06/2026

How to control Fizzy Do MCP ↓

What Fizzy Do MCP exposes to your agents

Read (24) Write / Execute (35) Destructive / Financial (8)
Critical Risk

The most dangerous Fizzy Do MCP tools

43 of Fizzy Do MCP's 67 tools can modify, destroy, or commit something on every call — and an agent calls them with no built-in limits.

How to control Fizzy Do MCP

PolicyLayer is an MCP gateway — it sits between your AI agents and Fizzy Do MCP, and nothing reaches the server without passing your rules. These are the rules we recommend:

Deny destructive operations
{
  "fizzy_delete_board": {
    "deny_if": [
      {
        "conditions": [],
        "on_deny": "Blocked by default. Requires approval."
      }
    ]
  }
}

Destructive tools should never be available to autonomous agents without human approval.

Rate limit write operations
{
  "fizzy_add_card_reaction": {
    "limits": [
      {
        "counter": "fizzy_add_card_reaction_per_hour",
        "window": "hour",
        "max": 30,
        "scope": "grant"
      }
    ]
  }
}

Prevents bulk unintended modifications from agents caught in loops.

Cap read operations
{
  "fizzy_get_account": {
    "limits": [
      {
        "counter": "fizzy_get_account_per_minute",
        "window": "minute",
        "max": 60,
        "scope": "grant"
      }
    ]
  }
}

Controls API costs and prevents retry loops from exhausting upstream rate limits.

  1. Create a free account and register Fizzy Do MCP — nothing to install.
  2. Add these rules — paste them, or build them visually. Tune the limits to your setup.
  3. Point your MCP client (Claude, Cursor, anything) at your gateway URL.
ENFORCE POLICY ON FIZZY DO →

Instant setup, no code required.

All 67 Fizzy Do MCP tools

WRITE 34 tools
Write fizzy_add_card_reaction Add a reaction to a card. Available emojis: ${REACTION_EMOJIS.join( Write fizzy_add_comment_reaction Add a reaction to a comment. Available emojis: ${REACTION_EMOJIS.join( Write fizzy_assign_card Toggle assignment of a user to a Fizzy card. If the user is not assigned, they will be added. If they are, the Write fizzy_close_card Close (complete) a Fizzy card, marking it as done. Write fizzy_create_board Create a new Fizzy board. Write fizzy_create_card Create a new Fizzy card on a board. Write fizzy_create_column Create a new column on a Fizzy board. Write fizzy_create_comment Add a comment to a Fizzy card. Write fizzy_create_step Create a new step (checklist item) on a card. Write fizzy_create_webhook Create a new webhook to receive event notifications. Requires admin privileges. Available events: ${WEBHOOK_EV Write fizzy_mark_all_notifications_read Mark all notifications as read. Write fizzy_mark_golden Mark a Fizzy card as golden (important). Write fizzy_mark_notification_read Mark a specific notification as read. Write fizzy_pin_card Pin a Fizzy card for quick access. Write fizzy_pm_end_session End a work session on a card with a summary. This wraps up the session by: - Adding a summary comment with wha Write fizzy_pm_report_progress Report progress made on a card by adding a structured comment. Use this to document work done during an AI ses Write fizzy_pm_start_session Start a tracked work session on a card. This marks the card as being actively worked on by: - Adding a Write fizzy_postpone_card Move a Fizzy card to Write fizzy_publish_board Publish a Fizzy board, making it publicly accessible via a shareable link. Write fizzy_reopen_card Reopen a closed Fizzy card. Write fizzy_tag_card Toggle a tag on a Fizzy card. If the tag is not on the card, it will be added. If it is, it will be removed. Write fizzy_toggle_step Toggle a step between completed and not completed. Write fizzy_triage_card Move a Fizzy card into a specific column on the board. Write fizzy_unmark_golden Remove golden status from a Fizzy card. Write fizzy_unpin_card Unpin a Fizzy card. Write fizzy_unpublish_board Unpublish a Fizzy board, removing public access. Write fizzy_untriage_card Send a Fizzy card back to triage, removing it from its column. Write fizzy_unwatch_card Unsubscribe from notifications for a Fizzy card. Write fizzy_update_board Update an existing Fizzy board. Only board administrators can update boards. Write fizzy_update_card Update an existing Fizzy card. Write fizzy_update_column Update a column on a Fizzy board. Write fizzy_update_comment Update a comment. Only the comment creator can update their comments. Write fizzy_update_step Update a step on a card. Write fizzy_update_webhook Update an existing webhook. Requires admin privileges.
READ 24 tools
Read fizzy_get_account Get the current Fizzy account settings including name, card count, and auto-postpone settings. Read fizzy_get_board Get details of a specific Fizzy board by its ID. Read fizzy_get_card Get details of a specific Fizzy card by its number. Read fizzy_get_column Get a specific column by ID. Read fizzy_get_comment Get a specific comment by ID. Read fizzy_get_identity Get the current user identity and list of accessible Fizzy accounts. Use this to discover available accounts. Read fizzy_get_notification Get details of a specific notification. Read fizzy_get_user Get details of a specific user by ID. Read fizzy_get_webhook Get details of a specific webhook by its ID. Requires admin privileges. Read fizzy_list_boards List all Fizzy boards you have access to in the current account. Read fizzy_list_card_reactions List all reactions on a card. Read fizzy_list_cards List Fizzy cards with optional filters. Use this to search and browse cards. Read fizzy_list_columns List all columns on a Fizzy board, sorted by position. Read fizzy_list_comment_reactions List all reactions on a comment. Read fizzy_list_comments List all comments on a Fizzy card, sorted chronologically (oldest first). Read fizzy_list_notifications List notifications for the current user. Read fizzy_list_steps List all steps (checklist items) on a card. Read fizzy_list_tags List all tags in the Fizzy account, sorted alphabetically. Use tag IDs from this list to filter cards or apply Read fizzy_list_users List all active users in the Fizzy account. Use user IDs from this list to assign cards. Read fizzy_list_webhooks List all webhooks configured for the account. Requires admin privileges. Read fizzy_notification_count Get the count of notifications (total and unread). Read fizzy_pm_actionable_cards Get cards that are ready for AI work. Returns cards that are: - Golden (marked as important) - Assigned to the Read fizzy_pm_project_context Get comprehensive context about a project/board for AI decision-making. Includes: board structure, column work Read fizzy_watch_card Subscribe to notifications for a Fizzy card.

Related servers

Other MCP servers with similar tools — same risk classification, starter policies for each.

Questions about Fizzy Do MCP

Can an AI agent delete data through the Fizzy Do MCP server? +

Yes. The Fizzy Do MCP server exposes 8 destructive tools including fizzy_delete_board, fizzy_delete_card, fizzy_delete_column. These permanently remove resources with no undo. PolicyLayer blocks destructive tools by default so they never reach the upstream server.

How do I prevent bulk modifications through Fizzy Do MCP? +

The Fizzy Do MCP server has 34 write tools including fizzy_add_card_reaction, fizzy_add_comment_reaction, fizzy_assign_card. Set a rate limit in your policy -- for example, 10 calls per hour prevents an agent from making more than 10 modifications per hour. PolicyLayer enforces this at the gateway, before calls reach Fizzy Do MCP.

How many tools does the Fizzy Do MCP server expose? +

67 tools across 4 categories: Destructive, Execute, Read, Write. 24 are read-only. 43 can modify, create, or delete data.

How do I enforce a policy on Fizzy Do MCP? +

Register the Fizzy Do MCP server in PolicyLayer, apply the suggested rules above (adjust the limits to your use case), and point your AI client at the PolicyLayer proxy URL instead of the server directly. Your agents keep the same tools; PolicyLayer evaluates every call against policy before it executes. Nothing to install, live in minutes.

Enforce policy on every Fizzy Do MCP tool call.

Deterministic rules across all 67 Fizzy Do MCP tools. Per-identity grants. Full audit log. Live in minutes. Nothing to install.

Instant setup, no code required.

67 Fizzy Do MCP tools catalogued and risk-classified — across an index of 43,000+ MCP servers.

// GET IN TOUCH

Have a question or want to learn more? Send us a message.

Message sent.

We'll get back to you soon.