store_list_logos
List logos in a store's library.
Returns the store's logo library, primary first then newest. Each row includes logo_url, transparent_url (post-bg-removal), is_primary, bg_removed_at. Use transparent_url when compositing mockups.
Request
arguments
{
"slug": "string"
}Response
content[0].text (JSON-parsed)
{
"logos": [
{
"id": "uuid",
"name": "string",
"logo_url": "string",
"transparent_url": "string | null",
"is_primary": "boolean",
"bg_removed_at": "ISO-8601 | null"
}
]
}Example
tool call
{
"name": "store_list_logos",
"arguments": { "slug": "bravo" }
}Related tools