action cloudflare_tags_list_values { label: "List tag values" description: "Lists all distinct values for a given tag key, optionally filtered by resource type." provider: cloudflare method: GET path: "/accounts/{account_id}/tags/values/{tag_key}" encoding: json input: { type: "object" properties: { account_id: { type: "object" } tag_key: { type: "string" } } required: ["account_id", "tag_key"] additionalProperties: false } output: { type: "object" } }