Skip to main content
Glama

Refresh client favicon

refresh_client_favicon

Re-derive a client's square favicon from its stored website (Google favicon service), cache-bust it, save it, and return the new favicon URL. Requires the client to have a website configured.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesClient ID (from list_clients)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNoThe client carrying the newly derived favicon_url.
successYesTrue when the call succeeded. A failure comes back as an error result instead.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "data": {
      +      "additionalProperties": {},
      +      "description": "The client carrying the newly derived favicon_url.",
      +      "type": "object"
      +    },
      +    "success": {
      +      "description": "True when the call succeeded. A failure comes back as an error result instead.",
      +      "type": "boolean"
      +    }
      +  },
      +  "required": [
      +    "success"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

A3.8/5.0
Behavior3/5

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

Annotations indicate readOnlyHint=false and destructiveHint=false, and the description adds important behavioral context: it saves the result and cache-busts the favicon. It also discloses the external Google favicon service dependency. However, it does not mention failure behavior when the website is invalid or unreachable, or whether the previous favicon is overwritten beyond the implied save.

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

Conciseness5/5

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

A single sentence delivers the full behavior, external service used, side effect, return value, and prerequisite without any filler or redundancy. Every clause earns its place.

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 tool with an output schema, the description is largely complete: it states the action, the dependency, the mutation, the return value, and the required precondition. It could mention what happens if no website is configured, but the description already says the capability requires one, and the output schema covers return details.

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

Parameters3/5

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

Schema description coverage is 100% and the only parameter, id, is documented as 'Client ID (from list_clients)'. The description adds no additional parameter-level meaning, but none is needed because the schema already fully covers it.

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 precise verb ('re-derive') and resource ('client's square favicon'), and fully spells out the pipeline: fetch from the stored website via Google favicon service, cache-bust, save, and return the new URL. Its client-specific scope makes it clearly distinct from refresh_account_favicon, remove_client_favicon, and refresh_client_screenshot.

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

Usage Guidelines3/5

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

The description clearly establishes a prerequisite: the client must have a website configured. However, it does not explicitly mention when this tool should be preferred over alternatives like refresh_account_favicon or refresh_client_screenshot, nor does it state conditions in which the tool should not be used.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources