action mastodon_get_api_v1_domain_blocks { label: "get_api_v1_domain_blocks" description: "View domains the user has blocked." provider: mastodon method: GET path: "/api/v1/domain_blocks" encoding: json input: { type: "object" properties: { limit: { type: "integer" } max_id: { type: "string" } since_id: { type: "string" } } additionalProperties: false } output: { type: "array" items: { type: "string" } } }