fizzy-mcp
MCP server for Fizzy, Basecamp's open-source Kanban tool. Enables AI assistants to manage boards, cards, tags, columns, and comments via API.
README
Fizzy-MCP
An MCP (Model Context Protocol) server for Fizzy, Basecamp's open-source Kanban tool.
What is MCP?
Model Context Protocol lets AI assistants (like Claude) use external tools. This server gives Claude the ability to manage your Fizzy boards and cards.
Quick Start
1. Install
git clone https://github.com/clawdcraft/fizzy-mcp.git
cd fizzy-mcp
npm install
npm run build
2. Get a Fizzy API Token
- Open your Fizzy instance (e.g.,
http://localhost:3000) - Click your avatar ā My profile
- Go to Access Tokens
- Click Generate a new access token
- Enter a description (e.g., "MCP Server")
- Select Read + Write permission
- Copy the token (you won't see it again!)
3. Configure Your Claude Client
Claude Code (macOS/Linux)
Edit ~/.claude.json:
{
"mcpServers": {
"fizzy": {
"command": "node",
"args": ["/full/path/to/fizzy-mcp/dist/index.js"],
"env": {
"FIZZY_URL": "http://localhost:3000",
"FIZZY_TOKEN": "your-api-token-here",
"FIZZY_ACCOUNT_ID": "1"
}
}
}
}
Claude Desktop (macOS)
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"fizzy": {
"command": "node",
"args": ["/full/path/to/fizzy-mcp/dist/index.js"],
"env": {
"FIZZY_URL": "http://localhost:3000",
"FIZZY_TOKEN": "your-api-token-here",
"FIZZY_ACCOUNT_ID": "1"
}
}
}
}
Then restart Claude.
4. Use It
Ask Claude things like:
- "List my Fizzy boards"
- "Create a card called 'Fix login bug' on the Ravenus board"
- "Move card 15 to Done"
- "Add a comment to card 12"
Environment Variables
| Variable | Description | Default |
|---|---|---|
FIZZY_URL |
Your Fizzy instance URL | http://localhost:3000 |
FIZZY_TOKEN |
API access token | (required) |
FIZZY_ACCOUNT_ID |
Account ID (from URL path) | 1 |
Available Tools
Boards
| Tool | Description |
|---|---|
fizzy_list_boards |
List all boards in the account |
fizzy_get_board |
Get details of a specific board |
fizzy_create_board |
Create a new board |
Cards
| Tool | Description |
|---|---|
fizzy_list_cards |
List all cards (optionally filter by board_id) |
fizzy_get_card |
Get card details |
fizzy_create_card |
Create a new card |
fizzy_update_card |
Update card title/description |
fizzy_move_card |
Move to column, "done", or "not_now" |
Tags
| Tool | Description |
|---|---|
fizzy_add_tag |
Add a tag to a card (creates tag if needed) |
fizzy_remove_tag |
Remove a tag from a card |
Columns & Comments
| Tool | Description |
|---|---|
fizzy_list_columns |
List columns on a board |
fizzy_add_comment |
Add a comment to a card |
fizzy_list_comments |
List comments on a card |
Examples
Create a card with HTML description
Create a card on board "03fjavj4afm5qrvuvluoi0po9" with:
- Title: "š§ Fix database connection"
- Description with a link to the GitHub issue
The MCP server supports HTML in descriptions:
Fix the connection pooling issue.
š <a href="https://github.com/example/repo/issues/42">Issue #42</a>
Move cards through workflow
Move card 15 to "done"
Move card 12 to "not_now"
Tag cards
Add tag "bug" to card 15
Remove tag "feature" from card 12
Tags are created automatically if they don't exist.
Development
# Install dependencies
npm install
# Build
npm run build
# Watch mode
npm run dev
Testing Manually
export FIZZY_URL="http://localhost:3000"
export FIZZY_TOKEN="your-token"
export FIZZY_ACCOUNT_ID="1"
# List tools
echo '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | node dist/index.js
# Call a tool
echo '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fizzy_list_boards","arguments":{}}}' | node dist/index.js
Troubleshooting
406 Not Acceptable
- Check that
FIZZY_TOKENis set and valid - Verify the token has Read + Write permissions
Connection refused
- Ensure Fizzy is running at the configured URL
- Check the port matches your Fizzy setup
Card not found
- Card IDs are the card number (e.g.,
11), not the CUID
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.