MCP server/other

Fizzy MCP Server

MCP server for Fizzy kanban task management

★ 1davegomez/fizzy-mcp ↗by davegomezupdated
1

Add it to Claude Code

claude mcp add -e "FIZZY_TOKEN=${FIZZY_TOKEN}" fizzy-mcp-8272 -- npx -y @silky/fizzy-mcp
Required:FIZZY_TOKEN+ 2 optional
2

Make your agent remember this setup

fizzy-mcp-8272's config, env vars, and the gotchas you hit — recalled in every future Claude Code, Cursor, and Codex session.

npx conare@latest

Free · one command · indexes the sessions already on disk. Set up in the browser instead →

What it does

  • Manage kanban boards and cards
  • Add and view comments on tasks
  • Handle checklists within cards
  • Support for multiple Fizzy accounts
  • Automatic account detection

Tools 1

fizzy_accountGets, sets, or lists accounts for subsequent tool calls.

Environment Variables

FIZZY_TOKENrequiredAPI token from Fizzy settings
FIZZY_ACCOUNTDefault account slug
FIZZY_BASE_URLAPI base URL

Try it

List my Fizzy boards.
Show me the cards in my 'Work' board.
Add a new card to the 'To Do' list in my project board.
Set my default account to the personal workspace.
Add a comment to the card with ID 12345.
Original README from davegomez/fizzy-mcp

fizzy-mcp

MCP server for Fizzy task management. Exposes 7 tools for managing boards, cards, comments, and checklists.

Prerequisites

Get your Fizzy access token:

  1. Log in to Fizzy
  2. Go to Settings > API Access
  3. Generate a new token

How to Install

<details> <summary><b>Claude Desktop</b></summary>

Add to your config file:

  • macOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "Fizzy": {
      "command": "npx",
      "args": ["-y", "@silky/fizzy-mcp"],
      "env": {
        "FIZZY_TOKEN": "your-token-here"
      }
    }
  }
}

Windows only: Add "APPDATA": "C:\\Users\\YourUsername\\AppData\\Roaming" to the env block.

Restart Claude Desktop completely, then verify: "List my Fizzy boards."

</details> <details> <summary><b>Claude Code</b></summary>

Use the CLI:

claude mcp add --transport stdio Fizzy --env FIZZY_TOKEN=your-token-here -- npx -y @silky/fizzy-mcp

Or add to ~/.claude.json:

{
  "mcpServers": {
    "Fizzy": {
      "command": "npx",
      "args": ["-y", "@silky/fizzy-mcp"],
      "env": {
        "FIZZY_TOKEN": "your-token-here"
      }
    }
  }
}

Restart Claude Code, then verify: "List my Fizzy boards."

</details> <details> <summary><b>Cursor</b></summary>

Add to ~/.cursor/mcp.json (global) or .cursor/mcp.json (project):

{
  "mcpServers": {
    "Fizzy": {
      "command": "npx",
      "args": ["-y", "@silky/fizzy-mcp"],
      "env": {
        "FIZZY_TOKEN": "your-token-here"
      }
    }
  }
}

Restart Cursor completely, then verify in Agent mode (Ctrl+I).

</details> <details> <summary><b>VS Code</b></summary>

Add to .vscode/mcp.json in your workspace:

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fizzy-token",
      "description": "Fizzy API Token",
      "password": true
    }
  ],
  "servers": {
    "Fizzy": {
      "command": "npx",
      "args": ["-y", "@silky/fizzy-mcp"],
      "env": {
        "FIZZY_TOKEN": "${input:fizzy-token}"
      }
    }
  }
}

Or use user settings via Command Palette → "MCP: Open User Configuration".

</details> <details> <summary><b>Windsurf</b></summary>

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "Fizzy": {
      "command": "npx",
      "args": ["-y", "@silky/fizzy-mcp"],
      "env": {
        "FIZZY_TOKEN": "${env:FIZZY_TOKEN}"
      }
    }
  }
}

Set FIZZY_TOKEN in your shell environment, or hardcode the value. Restart Windsurf.

</details> <details> <summary><b>Cline</b></summary>

Add to the Cline MCP settings file:

  • macOS: ~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
  • Windows: %APPDATA%/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
  • Linux: ~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
{
  "mcpServers": {
    "Fizzy": {
      "command": "npx",
      "args": ["-y", "@silky/fizzy-mcp"],
      "env": {
        "FIZZY_TOKEN": "your-token-here"
      },
      "disabled": false,
      "alwaysAllow": []
    }
  }
}
</details> <details> <summary><b>Continue</b></summary>

Add to .continue/config.yaml:

mcpServers:
  - name: Fizzy
    command: npx
    args:
      - "-y"
      - "@silky/fizzy-mcp"
    env:
      FIZZY_TOKEN: ${{ secrets.FIZZY_TOKEN }}
</details> <details> <summary><b>From Source</b></summary>

Requires pnpm.

git clone https://github.com/davegomez/fizzy-mcp.git
cd fizzy-mcp
pnpm install
pnpm build

Replace npx -y @silky/fizzy-mcp with node /absolute/path/to/fizzy-mcp/dist/index.js in any config above.

</details>

Configuration Reference

Variable Required Default Description
FIZZY_TOKEN Yes API token from Fizzy settings
FIZZY_ACCOUNT No Default account slug (e.g., 897362094)
FIZZY_BASE_URL No https://app.fizzy.do API base URL

Account Resolution

Tools resolve account_slug in this order:

  1. Explicit account_slug parameter on the tool call
  2. Session default (set via fizzy_account tool with action: "set")
  3. FIZZY_ACCOUNT environment variable
  4. Auto-detect (if user has exactly one account)

Tools Reference

fizzy_account

Gets, sets, or lists accounts for subsequent tool calls.

| Parameter | Type | Required | Description | | -------------- | -------------

Frequently Asked Questions

What are the key features of Fizzy?

Manage kanban boards and cards. Add and view comments on tasks. Handle checklists within cards. Support for multiple Fizzy accounts. Automatic account detection.

What can I use Fizzy for?

Quickly adding tasks to a kanban board during a coding session. Querying project status without leaving the IDE. Updating task progress or adding comments to cards via chat. Switching between personal and professional task workspaces.

How do I install Fizzy?

Install Fizzy by running: npx -y @silky/fizzy-mcp

What MCP clients work with Fizzy?

Fizzy works with any MCP-compatible client including Claude Desktop, Claude Code, Cursor, and other editors with MCP support.

Conare · memory for coding agents

Turn this server into reusable context

Keep Fizzy docs, env vars, and workflow notes in Conare so your agent carries them across sessions.

Set up free$npx conare@latest