fizzy-mcp AGENTS.md

fizzy-mcp AGENTS.md is an instructions file for Codex, OpenCode from Fabric-Pro/fizzy-mcp. It costs 1,339 tokens per session, scanned A, original, MIT.

Project instructions for Fizzy MCP, a TypeScript server that connects coding agents to Fizzy, a project-management tool for boards, cards, comments, tags, and notifications. MCP (Model Context Protocol) is a standard way for AI tools to use external services.

In plain words
What is it for?
Use them when developing, testing, or reviewing Fizzy MCP tools, API connections, transports, and related TypeScript code.
Why use it?
They explain the project's structure, technology choices, and development rules so changes fit the existing server and can be checked correctly.

Instructions file for CodexOpenCode

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add instructions/fabric-pro/fizzy-mcp/agents-md
Clone the repo
git clone --depth 1 https://github.com/Fabric-Pro/fizzy-mcp

Made for: Codex, OpenCode.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for fizzy-mcp AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/fabric-pro/fizzy-mcp/agents-md.svg)](https://agentmods.dev/instructions/fabric-pro/fizzy-mcp/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/fabric-pro/fizzy-mcp/agents-md"><img src="https://agentmods.dev/badge/instructions/fabric-pro/fizzy-mcp/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,339 This file is loaded in full into every session.
When invoked 1,339 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.01339 $0.01339
Opus 5 $0.00669 $0.00669
Sonnet 5 $0.00268 $0.00268
Haiku 4.5 $0.00134 $0.00134

Measured 4d ago against content hash 7bdb6231faf2, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

fizzy-mcp AGENTS.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

AGENTS.md · 104 lines

How it starts

The opening of the file, as written. The whole thing — 104 lines — stays where its author put it; the contents beside it link to each section on GitHub.

@AGENTS.local.md

AGENTS.md

Project Overview

fizzy-mcp is an MCP (Model Context Protocol) server for the Fizzy project management tool. It exposes 40+ tools for managing boards, cards, columns, steps, comments, reactions, tags, and notifications.

Tech Stack

  • Language: TypeScript 5.7 (ES2022, ESM modules)
  • Runtime: Node.js 18+ (standard), Cloudflare Workers (production)
  • MCP SDK: @modelcontextprotocol/sdk
  • Validation: Zod
  • Testing: Vitest
  • Build: tsc (compile), tsx (dev)

Architecture

src/
├── index.ts              # CLI entry point, transport selection
├── server.ts             # MCP server setup, tool registration
├── client/
│   ├── fizzy-client.ts   # HTTP client with retry, ETag caching
│   └── types.ts          # API request/response interfaces
├── tools/
│   ├── definitions.ts    # Tool metadata (name, description, annotations)
│   ├── schemas.ts        # Zod input schemas
│   └── handlers.ts       # Tool execution logic
├── transports/
│   ├── stdio.ts          # IDE integrations (Cursor, VS Code)
│   ├── sse.ts            # Server-Sent Events (multi-user)
│   └── http.ts           # Streamable HTTP (multi-user)
├── utils/
│   ├── errors.ts         # Typed error classes (FizzyAPIError, etc.)
│   ├── logger.ts         # Structured stderr logging
│   ├── security.ts       # CORS, auth, localhost binding
│   ├── session-manager.ts
│   ├── etag-cache.ts
│   ├── card-resolver.ts  # card_id → card_number
│   ├── attachments.ts    # Upload input resolution + ActionText markup
│   ├── file-source.ts    # Injected local-file capability (stdio only)
│   ├── md5.ts            # Runtime-independent MD5 (upload checksums)
│   └── base64.ts         # btoa/atob helpers that also work on Workers
└── cloudflare/           # Workers deployment (Durable Objects)

Key flow

  1. server.ts registers tools from tools/definitions.ts
  2. Each tool call dispatches through executeToolHandler() in tools/handlers.ts
  3. Handlers call FizzyClient methods which make HTTP requests to the Fizzy API
  4. Responses are formatted as MCP text content

Read the full file on GitHub · 104 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 104 lines · 1,339 tokens per session scan A 7bdb6231faf2

Subscribe to this mod's changes

fizzy-mcp AGENTS.md is an instructions file published in the GitHub repository Fabric-Pro/fizzy-mcp (17 stars, last pushed today), licensed MIT. It adds 1,339 tokens to every session, about $0.0067 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other instructions, from other repositories