store_list_mine

List stores accessible to the caller.

Returns every store the API-key principal owns or is a member of. Use this to discover available slugs before invoking slug-scoped tools.

Request

arguments
{}

Response

content[0].text (JSON-parsed)
{
  "stores": [
    {
      "id": "uuid",
      "slug": "string",
      "name": "string",
      "template": "string",
      "role": "\"owner\" | \"member\"",
      "created_at": "ISO-8601"
    }
  ]
}

Example

tool call
{
  "name": "store_list_mine",
  "arguments": {}
}

Related tools