Skip to main content
Glama
GregBaugues

Token Bowl MCP Server

by GregBaugues

token_bowl_chat_regenerate_api_key

Rotate your Token Bowl Chat API key immediately, invalidating the old one. Update your TOKEN_BOWL_CHAT_API_KEY environment variable to keep access.

Instructions

Generate a new API key and invalidate your current one.

Use this to rotate your API credentials for security purposes. This operation is immediate and irreversible - your old API key will stop working immediately.

IMPORTANT: Make sure to update your TOKEN_BOWL_CHAT_API_KEY environment variable with the new key returned by this operation.

Returns: Dict containing: - api_key: Your new API key (save this!)

Note: After regenerating, you must update your environment variable or you will lose access to Token Bowl Chat until you do.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations, the description carries the full burden and does so excellently: it discloses that the operation is immediate and irreversible, that the old key stops working immediately, and that failure to update the environment variable causes loss of access. These are exactly the behavioral traits an agent must know.

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 front-loaded with the core action and consequence. Some repetition exists (the IMPORTANT and Note sections both emphasize updating the environment variable), which is slightly redundant, but the structure is logical and nothing is wasted on irrelevant detail.

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

Completeness5/5

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

For a zero-parameter, irreversible credential-rotation operation with no annotations, the description provides everything needed: what it does, that it's irreversible, what it returns, and the mandatory follow-up action. Even though an output schema exists, the description translates the return into actionable guidance.

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?

There are zero parameters, so the baseline is 4. The description appropriately spends no space on parameter semantics and instead describes the returned api_key, which is the critical output for this operation.

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 states a specific verb+resource ('Generate a new API key and invalidate your current one') and is unmistakably distinct from all sibling tools, which are read/query operations. The purpose is fully unambiguous.

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

Usage Guidelines4/5

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

It says when to use it ('to rotate your API credentials for security purposes'), which is clear context. However, it doesn't discuss alternatives or when-not-to-use, so it doesn't reach the explicit when/when-not level of a 5.

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