voog_list_my_sites
List site metadata for a Voog API token. Returns the site's name, primary domain, and feature flags.
Instructions
Probe GET /admin/api/me/sites to discover account metadata for a Voog token. Returns [{name, primary_domain, feature_flags}]. R6 NOTE: Voog API tokens are site-scoped, so this tool returns metadata for the ONE site the token belongs to — the array is always length 1. To enumerate multiple sites, the operator must supply each token separately. Token sourcing: prefer token_env= (env var name; secret stays in the environment). token= is a fallback for ad-hoc use BUT the token will appear in transcripts and host logs — avoid in production. host defaults to 'www.voog.com' (the canonical admin endpoint); override for tenants on private domains. Read-only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token_env | No | Name of an environment variable holding the Voog API token (e.g. 'VOOG_API_KEY'). Preferred — secret stays in env. | |
| token | No | Raw API token. Fallback only — token will appear in transcripts/host logs. Prefer token_env= in production. | |
| host | No | Admin host to probe (default www.voog.com). Override for tenants on their own primary domain (e.g. 'stellasoomlais.com'). Validated against SSRF-defensive rules — localhost, raw IPs, private TLDs, embedded ports, and URL schemes are rejected. |