Skip to main content
Glama

fizzy_account

Manage your working account for API calls. Get the current default, set a new one, or list available accounts to see what you have access to.

Instructions

Get, set, or list accounts for API calls.

Manages the session default so you don't need to pass account_slug on every tool call.

When to use:

  • List available accounts to see what you have access to

  • Set working account after discovering accounts

  • Check current default before operations

Don't use when: Operating across multiple accounts simultaneously — pass account_slug explicitly instead.

Arguments:

  • action (required): "get" to check current default, "set" to change it, "list" to see available accounts

  • account_slug (required for set): Account slug (e.g., "897362094")

Returns:

  • get: { "action": "get", "account_slug": "897362094" } or null if not set

  • set: { "action": "set", "account_slug": "897362094" }

  • list: { "action": "list", "accounts": [{ "slug": "...", "name": "...", "id": "..." }] }

Related: Most tools auto-resolve account via FIZZY_ACCOUNT env var or single-account auto-detection.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYesAction: get | set | list. Use 'get' to check current, 'set' to change, 'list' to see available.
account_slugNoAccount slug (required for set action).
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description fully explains behavior: it describes each action's return format and side effects (setting the default). It reveals that get returns null if unset and that account_slug is only needed for set. Missing details like error handling for invalid slugs prevent a 5.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured with clear sections (When to use, Arguments, Returns, Related). While slightly verbose, every sentence adds useful information. It could be more terse, but the clarity compensates.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers usage, behavior for all three actions, return formats, and related tools. It is comprehensive for a simple account management tool. Minor omission: no mention of error behavior for invalid slugs, but overall sufficient.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already covers the enum for action and provides descriptions. The description adds value by clarifying the conditional requirement of account_slug (required for set) and giving an example slug, going beyond the schema's 'required': ['action'] alone.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Get, set, or list accounts for API calls' and explains it manages the session default. It distinguishes itself from sibling tools like fizzy_boards or fizzy_task by focusing solely on account context.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The 'When to use' and 'Don't use' sections provide explicit guidance for when to use this tool (list, set, check) and when to avoid it (multi-account operations, suggesting explicit account_slug instead). It also references auto-resolution via env var, giving clear context for alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/davegomez/fizzy-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server