store_update_typography

Update a store's typography.

PATCH the typography slice of the store's draft customization. Sane fields: heading_family, body_family, scale, weights. Server-side Zod validates the merged result. Set publish=true to ship to live.

Request

arguments
{
  "slug": "string",
  "typography": {
    "heading_family": "string?",
    "body_family": "string?",
    "scale": "number?",
    "weights": "object?"
  },
  "publish": "boolean?"
}

Response

content[0].text (JSON-parsed)
{
  "ok": true,
  "draft_customization": { /* StoreCustomization */ },
  "published": "boolean"
}

Example

tool call
{
  "name": "store_update_typography",
  "arguments": {
    "slug": "bravo",
    "typography": { "heading_family": "Fraunces", "body_family": "Inter" }
  }
}

Related tools