store_get

Get a single store's summary.

Returns the store row, current customization, draft_customization, and counts for published products, saved mockups, and orders. Use this to orient an agent before invoking any mutating tool.

Request

arguments
{
  "slug": "string"
}

Response

content[0].text (JSON-parsed)
{
  "id": "uuid",
  "slug": "string",
  "name": "string",
  "template": "string",
  "customization": { /* StoreCustomization */ },
  "draft_customization": { /* StoreCustomization */ },
  "counts": { "published_products": "number", "mockups": "number", "orders": "number" }
}

Example

tool call
{
  "name": "store_get",
  "arguments": { "slug": "bravo" }
}

Related tools