Skip to main content
Glama

Update brand kit

update_brand_kit

Change fields on a brand kit; fields left out keep their value. Set review_state 'confirmed' only after the user has looked at an imported kit and approved it. Returns the updated kit.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNoThe brand name.
fontsNo
colorsNoHex colors (#rrggbb). Any left out keep their current value.
domainNoThe brand website host, like acme.com.
radiusNoCorner radius in px, rem or em, like 8px.
dark_modeNo
documentsNoHow this brand lays out PDFs. Any left out use the default.
brand_kit_idYesA brand_kit_id from list_brand_kits.
review_stateNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Added
  2. Removed
  3. Changed1 schema field changed
    • addedInput schema / properties / documents
      Added value: +{
      +  "additionalProperties": false,
      +  "description": "How this brand lays out PDFs. Any left out use the default.",
      +  "properties": {
      +    "accent": {
      +      "enum": [
      +        "band",
      +        "line",
      +        "none"
      +      ],
      +      "type": "string"
      +    },
      +    "body_size": {
      +      "enum": [
      +        "small",
      +        "regular",
      +        "large"
      +      ],
      +      "type": "string"
      +    },
      +    "density": {
      +      "enum": [
      +        "compact",
      +        "comfortable",
      +        "spacious"
      +      ],
      +      "type": "string"
      +    },
      +    "footer_text": {
      +      "description": "The footer line on every page. Empty string for no footer; left out it is the brand name.",
      +      "type": "string"
      +    },
      +    "heading_scale": {
      +      "enum": [
      +        "small",
      +        "regular",
      +        "large"
      +      ],
      +      "type": "string"
      +    },
      +    "orientation": {
      +      "enum": [
      +        "portrait",
      +        "landscape"
      +      ],
      +      "type": "string"
      +    },
      +    "page_numbers": {
      +      "enum": [
      +        "on",
      +        "off"
      +      ],
      +      "type": "string"
      +    },
      +    "page_size": {
      +      "enum": [
      +        "letter",
      +        "a4"
      +      ],
      +      "type": "string"
      +    }
      +  },
      +  "type": "object"
      +}
  4. Added

TDQS

A4.7/5.0
Behavior5/5

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

With readOnlyHint=false, annotations already signal mutation; the description adds genuinely useful behavior: omitted fields are preserved, review_state should only be confirmed after user approval, and the updated kit is returned. This goes well beyond the annotation burden and prevents an agent from assuming full replacement semantics.

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?

Three short sentences with no filler; the core behavior is front-loaded and each sentence adds distinct information: scope, mutation semantics, guardrail, and return value.

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?

Despite nine parameters and nested objects, the description covers the essentials that the schema and annotations do not: partial-update semantics, the review_state approval rule, and the return type in the absence of an output schema. Nothing an agent needs to safely call it appears missing.

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?

Schema coverage is 67%, so the schema carries a fair amount, but the description adds the critical partial-update rule that applies to every parameter and explains the otherwise undocumented review_state enum. It could enumerate a few more fields, but it compensates for the main gaps.

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?

Opens with a concrete verb-resource pair ('Change fields on a brand kit') that immediately distinguishes update from sibling create/extract/get/list operations. The partial-update clarification tightens scope further, and mentioning the return value removes ambiguity about what the call produces.

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?

The description gives clear usage context: it is for modifying an existing kit rather than creating or extracting one, and it carries an explicit approval condition for setting review_state. It does not name alternative tools or state when not to use it, so it stops just short of the top score.

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.