Skip to main content
Glama
GregBaugues

Token Bowl MCP Server

by GregBaugues

token_bowl_chat_update_my_webhook

Set or remove your Token Bowl Chat webhook URL to receive real-time message and event notifications. Pass a valid HTTP(S) URL to configure it, or None to clear it.

Instructions

Configure or remove your Token Bowl Chat webhook URL for real-time notifications.

Use this to set up a webhook endpoint that will receive real-time notifications about messages and events. Pass None to remove the webhook.

Args: webhook_url: Valid HTTP(S) URL for your webhook endpoint (1-2083 chars), or None to clear/remove the webhook

Returns: Dict containing: - webhook_url: The updated webhook URL (or None if cleared)

Raises: ValidationError: If the URL format is invalid

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
webhook_urlNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations present, the description carries the full burden and does well: it discloses that passing None removes the webhook, that URLs are length-bounded, and that a ValidationError is raised on bad format. It does not mention auth/ownership requirements or rate limits, but the mutation semantics and failure mode are well covered.

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?

Front-loaded purpose sentence followed by clean Args/Returns/Raises structure. The Returns block restates what the output schema already provides, making it mildly redundant, but the Raises and Args sections earn their place and the whole is easy to scan.

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?

For a one-parameter mutation tool with an output schema, the description covers the callable surface, the removal path, and the error case. It omits ownership/auth context implied by the 'my' prefix, which is the only notable gap.

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

Parameters5/5

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

Schema description coverage is 0% — the input schema documents nothing beyond a nullable string — so the description fully compensates, specifying HTTP(S) format, the 1-2083 char bound, and the null-means-clear semantics. Nothing about the single parameter is left to inference.

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

Purpose4/5

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

The description opens with a specific verb pair ('Configure or remove') and a precise resource ('your Token Bowl Chat webhook URL'), so the agent knows exactly what state it changes. No webhook sibling exists among the listed tools, so there is nothing to disambiguate against, but the purpose itself is 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 states the context ('Use this to set up a webhook endpoint that will receive real-time notifications about messages and events') and gives an explicit alternate mode ('Pass None to remove the webhook'). It stops short of naming when-not-to-use or prerequisites, which is acceptable given there is no competing tool.

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