Skip to main content
Glama

Create brand kit

create_brand_kit

Create a brand kit by hand in the user's active space from what the user gave. Only name is required; colors, fonts and radius left out start from the YouSpot kit. Logos are uploaded on the kit's page. To import a brand from a website use extract_brand_kit instead. Returns the brand_kit_id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesThe 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.

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.6/5.0
Behavior4/5

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

Beyond the readOnlyHint=false annotation, the description adds meaningful behavior: omitted colors/fonts/radius default to the YouSpot kit, logos are not handled here, and the tool returns a brand_kit_id. These are real side-effect and return-value disclosures that help the agent predict consequences. Not exhaustive (e.g., no mention of overwriting or creation semantics), but solid.

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?

Four tight sentences, each purposeful: the action and scope, required/default behavior, logo caveat, alternative routing, and return value. No fluff, and the most decision-critical information is front-loaded.

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?

Given 7 parameters, nested objects, and no output schema, the description covers the core essentials: creation scope, required field, defaults, logo handling, sibling alternative, and the returned brand_kit_id. It could additionally explain what happens to the active space or how dark_mode/documents defaults behave, but the schema already carries the documents purpose, so this is 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?

Schema coverage is 71%, and the description adds value by explaining the default behavior for omitted colors, fonts, and radius ('start from the YouSpot kit') and reinforcing that only name is required. This bridges a gap the schema alone does not fill. It doesn't clarify dark_mode or the fonts object structure further, but the enum values and other schema descriptions cover those reasonably.

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?

States a specific verb and resource: 'Create a brand kit by hand' in the user's active space. It distinguishes the scope clearly from the sibling extract_brand_kit, and also adds boundaries like logos being uploaded separately. The agent knows exactly what this tool does and what it does not do.

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?

Explicitly routes to the alternative: 'To import a brand from a website use extract_brand_kit instead.' The phrase 'by hand' and 'from what the user gave' establishes when this tool is appropriate versus the import path. No inference needed.

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.