# BunnyCDN — how to use (mcp.ai)

Connect your BunnyCDN account and use 129 tools for developer tools straight from your AI agent. Connect with your own API key. BunnyCDN is a powerful content delivery network (CDN) offering an API to manage and deliver content globally with ease.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_bunnycdn?ms=1787293560000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `bunnycdn_add_allowed_referer`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/bunnycdn`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/bunnycdn/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/bunnycdn/add/allowed/referer` — Adds a hostname to the allowed referer list for a pull zone. Use this action to restrict content access by configuring referer-based security. Only requests with a Referer header matching one of the a
  - body: { id: integer, Hostname: string }
- `POST https://api.mcp.ai/api/bunnycdn/add/blocked/ip` — Tool to add an IP address to the blocked list of a pull zone. Use when you need to restrict access from specific IPs to prevent unwanted traffic.
  - body: { id: integer, BlockedIp: string }
- `POST https://api.mcp.ai/api/bunnycdn/add/blocked/referer` — Tool to add a blocked referer to a pull zone. Use when you need to prevent specific domains from hotlinking or accessing content from your CDN.
  - body: { id: integer, Hostname: string }
- `POST https://api.mcp.ai/api/bunnycdn/add/storage/zone` — Tool to add a new storage zone. Use when you need dedicated file storage in a specific region. Zone creation is irreversible — confirm Name, Region, and ZoneTier before executing.
  - body: { Name: string, Region: string, ZoneTier?: integer, OriginUrl?: string, ReplicationRegions?: string[] }
- `POST https://api.mcp.ai/api/bunnycdn/add/update/edge/rule` — Tool to add or update edge rules in a BunnyCDN pull zone for advanced traffic control. Edge rules allow conditional request processing based on triggers like URL patterns, headers, country codes, or I
  - body: { Guid?: string, Enabled: boolean, ReadOnly?: boolean, Triggers: object[], ActionType: string, OrderIndex?: integer, Description?: string, ExtraActions?: object[], pull_zone_id: integer, ActionParameter1?: string, ActionParameter2?: string, ActionParameter3?: string, TriggerMatchingType: string }
- `POST https://api.mcp.ai/api/bunnycdn/check/dns/zone/availability` — Tool to check if a DNS zone name is available for registration. Use before creating a new DNS zone to verify the domain name is not already in use.
  - body: { Name: string }
- `POST https://api.mcp.ai/api/bunnycdn/check/pull/zone/availability` — Tool to check if a pull zone name is available for registration. Use before creating a new pull zone to verify the name is not already in use.
  - body: { Name: string }
- `POST https://api.mcp.ai/api/bunnycdn/check/storage/zone/availability` — Tool to check if a storage zone name is available. Use before creating a new storage zone to verify the name is not already in use.
  - body: { Name: string }
- `POST https://api.mcp.ai/api/bunnycdn/create/coinify/payment` — Tool to create a Coinify cryptocurrency payment for BunnyCDN billing. Use when you need to add credit to a BunnyCDN account using cryptocurrency. Note: This endpoint is deprecated. Consider using alte
  - body: { amount: number, paymentRequestId?: integer }
- `POST https://api.mcp.ai/api/bunnycdn/create/database` — Creates a new Bunny Database (SQLite-compatible edge database). The database can be deployed in multiple global edge regions with primary and replica configurations for high availability. Storage is a
  - body: { name: string, storage_region: string, primary_regions: string[], replicas_regions: string[] }
- `POST https://api.mcp.ai/api/bunnycdn/create/dns/record` — Tool to create a new DNS record in a specific DNS zone. Use after confirming the DNS zone ID is active.
  - body: { Tag?: string, Ttl: integer, Name: string, Port?: integer, Type: integer, Flags?: integer, Value: string, Weight?: integer, Comment?: string, zone_id: integer, Disabled?: boolean, Priority?: integer, ScriptId?: integer, PullZoneId?: integer, Accelerated?: boolean, LatencyZone?: string, MonitorType?: integer, SmartRoutingType?: integer, GeolocationLatitude?: number, GeolocationLongitude?: number, EnviromentalVariables?: object[] }
- `POST https://api.mcp.ai/api/bunnycdn/create/live/live2` — Tool to retrieve live metrics data for database groups. Use when you need to fetch current performance metrics for specific group IDs.
  - body: { group_ids: string[] }
- `POST https://api.mcp.ai/api/bunnycdn/create/pull/zone` — Creates a new CDN pull zone in BunnyCDN for content delivery acceleration. A pull zone acts as a CDN endpoint that caches and delivers content from your origin server through BunnyCDN's global edge ne
  - body: { Name: string, Type?: integer, OriginUrl: string, EnableTLS1?: boolean, PricingTier?: integer, AWSSigningKey?: string, AddHostHeader?: boolean, EnableLogging?: boolean, StorageZoneId?: integer, EnableWebpVary?: boolean, EnableGeoZoneAF?: boolean, EnableGeoZoneAN?: boolean, EnableGeoZoneEU?: boolean, EnableGeoZoneME?: boolean, EnableGeoZoneOC?: boolean, EnableGeoZoneSA?: boolean, EnableGeoZoneUS?: boolean, AWSSigningSecret?: string, EnableCacheSlice?: boolean, AWSSigningEnabled?: boolean, EnableGeoZoneASIA?: boolean, LogForwardingPort?: integer, AddCanonicalHeader?: boolean, EnableHostnameVary?: boolean, EnableOriginShield?: boolean, IgnoreQueryStrings?: boolean, LogForwardingToken?: string, AWSSigningRegionName?: string, LogForwardingEnabled?: boolean, LoggingSaveToStorage?: boolean, LoggingStorageZoneId?: integer, OriginShieldZoneCode?: string, EnableCountryCodeVary?: boolean, LogForwardingHostname?: string, CacheControlMaxAgeOverride?: integer }
- `POST https://api.mcp.ai/api/bunnycdn/create/shield/rate/limit` — Tool to create a new Shield rate limit rule for protecting against excessive requests. Use when you need to configure rate limiting rules to prevent abuse, DDoS attacks, or API overuse on a Shield zon
  - body: { ruleName: string, shieldZoneId: integer, ruleDescription: string, ruleConfiguration: object }
- `POST https://api.mcp.ai/api/bunnycdn/create/shield/zone/access/list` — Tool to create a new custom access list in a Shield Zone. Use when you need to add IP addresses, countries, ASNs, or JA3 fingerprints to control access.
  - body: { name: string, type: string, content: string, checksum?: string, description?: string, shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/delete/container/registry` — Tool to delete a container registry from Magic Containers. Use when you need to remove a container registry after confirming its ID.
  - body: { registry_id: integer }
- `POST https://api.mcp.ai/api/bunnycdn/delete/database` — Tool to delete a BunnyCDN database by its ID. Use when you need to permanently remove an existing database after confirming the database ID.
  - body: { db_id: string }
- `POST https://api.mcp.ai/api/bunnycdn/delete/dns/record` — Tool to delete a specific DNS record by its ID. Use after confirming the DNS zone ID and record ID.
  - body: { zone_id: integer, record_id: integer }
- `POST https://api.mcp.ai/api/bunnycdn/delete/dns/zone` — Tool to delete a specific DNS zone by its ID. Use when you need to permanently remove an existing DNS zone after verifying the zone ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/bunnycdn/delete/edge/rule` — Tool to delete an Edge Rule from a Pull Zone by its ID. Use when you need to remove an Edge Rule after confirming the Pull Zone ID and Edge Rule ID.
  - body: { edge_rule_id: string, pull_zone_id: integer }
- `POST https://api.mcp.ai/api/bunnycdn/delete/group` — Tool to delete a specific database group by its ID. Use when you need to remove a group from the database.
  - body: { group_id: string }
- `POST https://api.mcp.ai/api/bunnycdn/delete/pull/zone` — Tool to delete a specific pull zone by its ID. Use when you need to remove a pull zone after confirming its ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/bunnycdn/delete/shield/zone/access/list` — Tool to delete a custom access list from a Shield Zone. Use when you need to remove an access control rule after confirming the Shield Zone ID and access list ID.
  - body: { id: integer, shield_zone_id: integer }
- `POST https://api.mcp.ai/api/bunnycdn/delete/storage/zone` — Tool to delete a storage zone. Deletion is irreversible — permanently removes the zone and all associated data. Use only after confirming the correct zone ID with the user.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/bunnycdn/generate/database/auth/token` — Tool to generate an authentication token for a BunnyCDN database. Use when you need to create access credentials for database operations.
  - body: { db_id: string, authorization: string }
- `POST https://api.mcp.ai/api/bunnycdn/generate2fa/verification` — Tool to generate 2FA verification details for account security setup. Use when setting up two-factor authentication for a BunnyCDN account.
- `POST https://api.mcp.ai/api/bunnycdn/get/billing/summary` — Tool to retrieve billing summary with data report for each Pull Zone. Use when you need to understand bandwidth usage and monthly charges across all pull zones.
- `POST https://api.mcp.ai/api/bunnycdn/get/coinify/btc/exchange/rate` — Tool to retrieve the current Coinify Bitcoin (BTC) exchange rate. Use when you need the current BTC price for cryptocurrency payment calculations. Note: This endpoint is deprecated according to the AP
- `POST https://api.mcp.ai/api/bunnycdn/get/container/config/suggestions` — Tool to get AI-powered configuration suggestions for deploying a container image on BunnyCDN's Magic Containers platform. Use when you need deployment recommendations for a specific container image in
  - body: { tag: string, imageName: string, registryId: string, imageNamespace: string }
- `POST https://api.mcp.ai/api/bunnycdn/get/container/image/digest` — Tool to retrieve the digest of a container image from a registry. Use when you need to verify an image version or pin to a specific digest.
  - body: { tag: string, imageName: string, registryId: string, imageNamespace: string }
- `POST https://api.mcp.ai/api/bunnycdn/get/database` — Tool to retrieve details of a specific database by its ID. Use when you need database configuration, size information, and region settings.
  - body: { db_id: string }
- `POST https://api.mcp.ai/api/bunnycdn/get/database/statistics` — Tool to retrieve time-series statistics for a Bunny Database instance. Returns hourly data for row read/write counts, delegated write requests, storage metrics, and latency over a specified date range
  - body: { to: string, from: string, db_id: string }
- `POST https://api.mcp.ai/api/bunnycdn/get/dns/zone/details` — Tool to retrieve details of a specific DNS zone by its ID. Use when you need to verify DNS zone configuration after creation or update.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/dns/zone/list` — Tool to list all DNS zones in your Bunny CDN account. Use when you need an overview of all configured DNS zones.
  - body: { page?: integer, perPage?: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/group` — Tool to retrieve details of a specific database group by its ID. Use when you need to get configuration and region information for a database group.
  - body: { group_id: string }
- `POST https://api.mcp.ai/api/bunnycdn/get/languages` — Tool to retrieve the list of languages supported by BunnyCDN's video library. Use when you need to discover available languages for player UI translation or automatic transcription features.
- `POST https://api.mcp.ai/api/bunnycdn/get/limits` — Tool to retrieve current database limits for the authenticated BunnyCDN account. Use when you need to check database usage and capacity.
- `POST https://api.mcp.ai/api/bunnycdn/get/oembed` — Tool to retrieve oEmbed metadata for BunnyCDN video embeds. Use when you need embed code or video metadata in oEmbed format.
  - body: { url: string, token?: string, expires?: integer, maxWidth?: integer, maxHeight?: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/optimal/base/region` — Tool to get the optimal base region for Magic Containers. Use when you need to determine the best region for deploying Magic Container instances based on current capacity and network conditions.
  - body: { cdnServerToken?: string }
- `POST https://api.mcp.ai/api/bunnycdn/get/optimizer/statistics` — Retrieve optimizer statistics for a Pull Zone to understand optimization performance. Use this action to analyze how Bunny Optimizer is performing for a specific Pull Zone, including compression ratio
  - body: { dateTo?: string, hourly?: boolean, dateFrom?: string, pullZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/origin/shield/queue/statistics` — Tool to retrieve Origin Shield Queue Statistics for a specific Pull Zone. Use when you need to analyze Origin Shield performance metrics including concurrent and queued request data over a specified t
  - body: { dateTo?: string, hourly?: boolean, dateFrom?: string, pullZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/prepare/payment/authorization` — Tool to prepare payment authorization for Bunny CDN billing. Use when you need to obtain an authorization key for payment processing. Note: This endpoint is deprecated.
- `POST https://api.mcp.ai/api/bunnycdn/get/pull/zone` — Tool to retrieve details of a specific Pull Zone. Use when you need full configuration and usage stats after confirming the Pull Zone ID.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/pull/zone/list` — Retrieve a paginated list of all Pull Zones in your BunnyCDN account. Use this to discover existing Pull Zones, their IDs, hostnames, and configuration. Supports filtering by name with the 'search' pa
  - body: { page?: integer, search?: string, perPage?: integer, includeCertificate?: boolean }
- `POST https://api.mcp.ai/api/bunnycdn/get/safe/hop/statistics` — Tool to retrieve SafeHop statistics for a specific Pull Zone. Use when you need to analyze how SafeHop has improved reliability by retrying and saving requests. SafeHop is BunnyCDN's feature that auto
  - body: { dateTo?: string, hourly?: boolean, dateFrom?: string, pullZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/bot/detection` — Tool to retrieve bot detection configuration for a specific Shield Zone. Use when you need to view the current bot detection settings and sensitivity levels.
  - body: { shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/ddos/enums` — Tool to retrieve available enums for Shield DDoS configuration. Use when you need to discover valid values for DDoS protection settings.
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/event/logs` — Tool to retrieve Shield Event Logs for a specific Shield Zone and date. Use when you need to view security events and Shield activity logs. Supports pagination via continuation tokens for large log se
  - body: { date: string, shieldZoneId: integer, continuationToken?: string }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/metrics/bot/detection` — Tool to retrieve bot detection metrics for a specific Shield Zone. Use when you need to analyze bot traffic and challenges for a Shield Zone.
  - body: { shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/metrics/overview` — Tool to retrieve comprehensive security metrics overview for a Shield Zone. Use when you need statistics on DDoS protection, WAF rules, bot detection, rate limiting, access lists, and upload scanning 
  - body: { shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/metrics/overview/detailed` — Tool to retrieve detailed Shield zone metrics overview including DDoS protection, WAF, bot detection, rate limiting, access lists, and upload scanning statistics. Use when you need comprehensive prote
  - body: { EndDate?: string, StartDate?: string, Resolution?: string, shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/metrics/rate/limit/id` — Tool to retrieve shield metrics for a specific rate limit by ID. Use when you need to monitor rate limit breach statistics and analyze traffic patterns over the past 28 days.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/metrics/rate/limits` — Tool to retrieve rate limit metrics for a Shield Zone. Use when you need to analyze rate limiting patterns and statistics for DDoS protection.
  - body: { shield_zone_id: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/metrics/upload/scanning` — Tool to retrieve upload scanning metrics for a specific Shield Zone. Use when you need to analyze file upload security and scanning statistics for a Shield Zone.
  - body: { shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/metrics/waf/rule` — Tool to retrieve shield metrics for a specific WAF rule. Use when you need to analyze how many requests were blocked, challenged, or logged by a particular WAF rule within a Shield Zone.
  - body: { ruleId: string, shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/promo/state` — Tool to retrieve a breakdown of Shield promotional data. Use when you need information about current, eligible, and enrolled Shield promotions.
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/rate/limit/id` — Tool to retrieve a specific rate limit configuration by its ID. Use when you need to view the full details and settings of a shield rate limit rule.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/rate/limits` — Tool to retrieve Shield Rate Limits for a specific Shield Zone. Use when you need to list or audit rate limiting rules configured for a Shield Zone.
  - body: { page?: integer, perPage?: integer, shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/shield/zones` — Tool to retrieve a list of all Shield Zones with their configurations. Use when you need to view all Shield Zones and their security settings. Supports pagination to handle large numbers of Shield Zon
  - body: { page?: integer, perPage?: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/upload/scanning` — Tool to retrieve upload scanning configuration for a Shield Zone. Use when you need to check antivirus and CSAM scanning settings for uploaded files.
  - body: { shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/waf/custom/rule/id` — Tool to retrieve details of a specific Shield WAF custom rule by its ID. Use when you need to view the configuration, conditions, and actions of a custom Web Application Firewall rule.
  - body: { id: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/waf/custom/rules` — Tool to retrieve custom WAF rules for a specific Shield Zone. Use when you need to list or review custom WAF rule configurations. Supports pagination for large rule sets.
  - body: { page?: integer, perPage?: integer, shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/waf/engine/config` — Tool to retrieve Shield WAF engine configuration settings. Use when you need to view the current WAF engine configuration parameters and their values.
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/waf/enums` — Tool to retrieve available enums for Shield WAF configuration. Use when you need to discover valid values for WAF protection settings.
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/waf/profiles` — Tool to retrieve available WAF profiles for Shield zones. Use when you need to list all available WAF security profiles including their features, categories, and descriptions.
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/waf/rules/plan/segmentation` — Tool to retrieve WAF rules organized by subscription plan tiers. Use when you need to understand which WAF rules are available for different Shield plan levels.
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/waf/rules/review/triggered` — Tool to retrieve triggered WAF rules for review in a specific Shield Zone. Use when you need to analyze which WAF rules have been triggered and review security events for remediation.
  - body: { shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/waf/rules/shield/zone/id` — Tool to retrieve Shield WAF Rules for a specific Shield Zone. Use when you need to view or audit the WAF rule configurations applied to a Shield Zone.
  - body: { shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/zone` — Tool to retrieve detailed configuration of a specific Shield Zone. Use when you need to view DDoS protection settings, WAF configuration, or security rules for a shield zone.
  - body: { shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/zone/access/list` — Tool to retrieve a specific custom access list from a Shield Zone. Use when you need to view details of an access control rule including its content, type, and metadata.
  - body: { id: integer, shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/zone/access/list/enums` — Tool to retrieve available enums for Shield Zone Access List configuration. Use when you need to discover valid values for access list settings for a specific Shield Zone.
  - body: { shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/zone/access/lists` — Tool to retrieve all access lists for a Shield Zone, including both managed threat lists and custom lists. Use when you need to view access control configurations and their status.
  - body: { shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/zone/by/pullzone` — Tool to retrieve Shield Zone details by Pull Zone ID. Use when you need to view security and protection settings for a specific Pull Zone. Returns DDoS protection, WAF configuration, and other Shield 
  - body: { pullZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/shield/zones/pullzone/mapping` — Tool to retrieve the mapping between Shield Zones and Pull Zones. Use when you need to see which Shield Zones are protecting which Pull Zones in your BunnyCDN account.
- `POST https://api.mcp.ai/api/bunnycdn/get/statistics` — Tool to retrieve CDN statistics data for bandwidth, requests, cache performance, and geographic distribution. Use this action to analyze CDN performance across pull zones or specific regions. Supports
  - body: { dateTo?: string, hourly?: boolean, dateFrom?: string, pullZone?: integer, loadErrors?: boolean, serverZoneId?: integer, loadBandwidthUsed?: boolean, loadOriginTraffic?: boolean, loadRequestsServed?: boolean, loadUserBalanceHistory?: boolean, loadOriginResponseTimes?: boolean, loadOriginShieldBandwidth?: boolean, loadGeographicTrafficDistribution?: boolean }
- `POST https://api.mcp.ai/api/bunnycdn/get/storage/zone/details` — Tool to retrieve the full details of a storage zone, including configuration, usage metrics, and credentials. The response includes sensitive fields Password and ReadOnlyPassword — mask or omit these 
  - body: { id: integer }
- `POST https://api.mcp.ai/api/bunnycdn/get/storage/zone/list` — Tool to list all storage zones in your Bunny CDN account. Use when you need an overview of all configured storage zones.
  - body: { page?: integer, perPage?: integer, includeDeleted?: boolean }
- `POST https://api.mcp.ai/api/bunnycdn/get/user/audit` — Tool to retrieve user audit log entries for a specific date with optional filtering. Use when you need to track user actions, security auditing, or compliance reporting.
  - body: { date: string, Limit?: integer, Order?: string, ActorId?: string[], Product?: string[], ResourceId?: string[], ResourceType?: string[], ContinuationToken?: string }
- `POST https://api.mcp.ai/api/bunnycdn/get/user/details` — Tool to retrieve complete details of the currently authorized user account. Use when you need account information, billing status, or user profile data.
- `POST https://api.mcp.ai/api/bunnycdn/get/user/limits` — Tool to retrieve user limits and quotas for Magic Containers. Use when you need to check application, instance, region, and volume limits for the authenticated account.
- `POST https://api.mcp.ai/api/bunnycdn/get/whats/new/items` — Tool to retrieve What's New items for the current user. Use when you need to discover recent features, updates, and bug fixes in the BunnyCDN platform.
- `POST https://api.mcp.ai/api/bunnycdn/invalidate/database/auth/tokens` — Tool to invalidate all authentication tokens for a BunnyCDN database. Use when you need to revoke all active access credentials for a specific database.
  - body: { db_id: string }
- `POST https://api.mcp.ai/api/bunnycdn/invalidate/group/auth` — Tool to invalidate authentication tokens for a specific database group. Use when you need to revoke all active tokens for a group.
  - body: { group_id: string }
- `POST https://api.mcp.ai/api/bunnycdn/list/api/keys` — Tool to retrieve a paginated list of all API keys in your BunnyCDN account. Use when you need to view existing API keys and their associated roles.
  - body: { page?: integer, perPage?: integer }
- `POST https://api.mcp.ai/api/bunnycdn/list/applications` — Tool to list all Magic Container applications in your Bunny CDN account. Use when you need an overview of deployed applications, their status, and endpoints. Supports cursor-based pagination for effic
  - body: { limit?: integer, nextCursor?: string }
- `POST https://api.mcp.ai/api/bunnycdn/list/container/image/tags` — Tool to list all available tags for a container image in a registry. Use when you need to discover available versions or tags for a container image.
  - body: { imageName: string, registryId: string, imageNamespace: string }
- `POST https://api.mcp.ai/api/bunnycdn/list/container/registries` — Tool to list all container registries in your BunnyCDN Magic Containers account. Use when you need to view configured container registries with their connection details.
  - body: { limit?: integer, nextCursor?: string }
- `POST https://api.mcp.ai/api/bunnycdn/list/country/list` — Tool to retrieve the list of countries supported by BunnyCDN with their tax rates and Points of Presence. Use when you need to discover available countries, their tax information, or PoP locations for
- `POST https://api.mcp.ai/api/bunnycdn/list/database/active` — Tool to retrieve active database usage statistics. Returns the number of active databases, total databases, and total size across all databases. Use when you need an overview of database usage and sto
- `POST https://api.mcp.ai/api/bunnycdn/list/database/config` — Tool to retrieve database configuration including available storage regions, primary regions, and replica regions. Use when you need to discover which regions are available for database deployment and
- `POST https://api.mcp.ai/api/bunnycdn/list/database/usage` — Tool to retrieve aggregated usage metrics for a Bunny Database instance. Returns total rows read/written and average latency for a specified date range. Use when you need aggregated usage statistics r
  - body: { to: string, from: string, db_id: string }
- `POST https://api.mcp.ai/api/bunnycdn/list/database/versions` — Tool to list all versions of a specific database. Use when you need to view version history, track database changes, or restore to a previous version.
  - body: { db_id: string }
- `POST https://api.mcp.ai/api/bunnycdn/list/databases/v2` — Tool to list databases with pagination support using the v2 API. Use when you need to paginate through large numbers of databases or need pagination metadata.
  - body: { page?: integer }
- `POST https://api.mcp.ai/api/bunnycdn/list/edge/scripts` — Retrieve a paginated list of all edge scripts in your BunnyCDN account. Use when you need to discover existing edge scripts, their IDs, types, and configuration.
  - body: { page?: integer, type?: integer[], search?: string, perPage?: integer, integrationId?: integer, includeLinkedPullzones?: boolean }
- `POST https://api.mcp.ai/api/bunnycdn/list/group` — Tool to retrieve a list of all database groups in your BunnyCDN account. Use when you need to discover existing database groups and their configuration.
- `POST https://api.mcp.ai/api/bunnycdn/list/group/statistics` — Tool to retrieve time-series statistics for a database group. Returns data for row read/write counts and storage usage over a specified date range. Use when you need to analyze group-level performance
  - body: { to: string, from: string, group_id: string }
- `POST https://api.mcp.ai/api/bunnycdn/list/group/usage` — Tool to retrieve aggregated usage statistics for a database group over a specified time period. Returns total rows read/written and average latency. Use when you need to analyze group-level usage patt
  - body: { to: string, from: string, group_id: string }
- `POST https://api.mcp.ai/api/bunnycdn/list/nodes` — Tool to retrieve a list of Magic Container nodes in your BunnyCDN account. Use when you need to view available node IP addresses for Magic Containers. Supports pagination through cursor-based navigati
  - body: { limit?: integer, nextCursor?: string }
- `POST https://api.mcp.ai/api/bunnycdn/list/notifications` — Tool to list all notifications for the currently logged in user. Use when you need to retrieve notifications.
- `POST https://api.mcp.ai/api/bunnycdn/list/region/list` — Tool to retrieve the list of regions supported by BunnyCDN with their geographic coordinates and pricing. Use when you need to discover available regions for deployment or to get pricing information p
- `POST https://api.mcp.ai/api/bunnycdn/list/regions` — Tool to list all available regions for Magic Containers. Use when you need to discover available deployment regions, check their capacity status, or understand Anycast support across regions.
  - body: { limit?: integer, nextCursor?: string }
- `POST https://api.mcp.ai/api/bunnycdn/list/video/libraries` — Retrieve a paginated list of all video libraries in your BunnyCDN account. Use when you need to discover existing video libraries, their IDs, and configuration details.
  - body: { page?: integer, search?: string, perPage?: integer }
- `POST https://api.mcp.ai/api/bunnycdn/list/volumes` — Tool to list all volumes for a Magic Container application in your BunnyCDN account. Use when you need to view storage volumes, their capacity, usage, and attached instances for a specific app.
  - body: { appId: string, limit?: integer, nextCursor?: string }
- `POST https://api.mcp.ai/api/bunnycdn/post/shield/waf/rules/review/triggered` — Tool to review and apply actions to triggered WAF rules in a specific Shield Zone. Use when you need to whitelist, block, or challenge specific WAF rules based on their triggered status.
  - body: { action: string, ruleId: string, shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/purge/pull/zone` — Purges the entire CDN cache for a specified pull zone. Use this action after updating content at the origin server to ensure that stale cached assets are cleared and fresh content is served to end use
  - body: { id: integer }
- `POST https://api.mcp.ai/api/bunnycdn/purge/url` — Purge a specific URL from the BunnyCDN cache to force it to be refreshed from the origin. Use this tool when you need to: - Invalidate cached content after updating a file on the origin server - Force
  - body: { url: string, async_flag?: boolean }
- `POST https://api.mcp.ai/api/bunnycdn/remove/allowed/referer` — Removes a hostname from the allowed referer list for a pull zone. Use this action to remove a previously configured referer-based security restriction. After removal, the specified hostname will no lo
  - body: { id: integer, Hostname: string }
- `POST https://api.mcp.ai/api/bunnycdn/remove/blocked/ip` — Tool to remove an IP address from the blocked list of a pull zone. Use when you need to restore access for specific IPs that were previously blocked.
  - body: { id: integer, BlockedIp: string }
- `POST https://api.mcp.ai/api/bunnycdn/remove/blocked/referer` — Tool to remove a blocked referer from a pull zone. Use when you need to allow a previously blocked domain to access content from your CDN again.
  - body: { id: integer, Hostname: string }
- `POST https://api.mcp.ai/api/bunnycdn/reset/pull/zone/security/key` — Tool to reset the security token key for a specific pull zone. Use when you need to regenerate the security key for authentication purposes.
  - body: { id: integer, SecurityKey?: string }
- `POST https://api.mcp.ai/api/bunnycdn/reset/whats/new` — Tool to reset the What's New notification list for the current user. Use when you need to mark all What's New items as read and reset the unread count.
- `POST https://api.mcp.ai/api/bunnycdn/restore/database` — Tool to restore a BunnyCDN database to a specific generation/version. This is a destructive operation that will revert the database to the specified point in time. Use when you need to recover data fr
  - body: { db_id: string, generation: string }
- `POST https://api.mcp.ai/api/bunnycdn/search/global/search` — Perform a global search across all BunnyCDN resources (pull zones, storage zones, DNS zones, scripts, streams). Use this to discover resources by name across your entire BunnyCDN account. Supports pag
  - body: { from?: integer, size?: integer, search?: string }
- `POST https://api.mcp.ai/api/bunnycdn/search/public/container/images` — Tool to search for public container images by prefix in a registry. Use when you need to discover available public container images matching a search term.
  - body: { page?: integer, size?: integer, prefix: string, registryId: string }
- `POST https://api.mcp.ai/api/bunnycdn/set/edge/rule/enabled` — Tool to enable or disable an edge rule in a BunnyCDN pull zone. Use when you need to activate or deactivate an existing edge rule without modifying its configuration. Edge rules that are disabled rema
  - body: { enabled: boolean, edge_rule_id: string, pull_zone_id: integer }
- `POST https://api.mcp.ai/api/bunnycdn/set/force/ssl` — Tool to set Force SSL on a pull zone hostname. Use when you need to enable or disable HTTPS enforcement for a specific hostname.
  - body: { id: integer, ForceSSL: boolean, Hostname: string }
- `POST https://api.mcp.ai/api/bunnycdn/set/notifications/opened` — Tool to mark all user notifications as opened. Use when you need to clear unread notification indicators. Returns success once notifications are marked as read.
- `POST https://api.mcp.ai/api/bunnycdn/update/database` — Tool to update an existing Bunny Database. Use when you need to change database name or control read/write access.
  - body: { name?: string, db_id: string, block_reads?: boolean, block_writes?: boolean }
- `POST https://api.mcp.ai/api/bunnycdn/update/group` — Tool to update a database group by its ID. Use when you need to modify the name or configuration of a database group.
  - body: { name?: string, group_id: string }
- `POST https://api.mcp.ai/api/bunnycdn/update/pull/zone` — Tool to update settings for a specific pull zone. Use when you need to modify existing pull zone settings after reviewing current configuration.
  - body: { id: integer, Name?: string, Type?: integer, OriginUrl?: string, EnableTLS1?: boolean, PricingTier?: integer, AWSSigningKey?: string, AddHostHeader?: boolean, EnableLogging?: boolean, StorageZoneId?: integer, DisableCookies?: boolean, EnableWebPVary?: boolean, EnableGeoZoneAF?: boolean, EnableGeoZoneAN?: boolean, EnableGeoZoneEU?: boolean, EnableGeoZoneME?: boolean, EnableGeoZoneOC?: boolean, EnableGeoZoneSA?: boolean, EnableGeoZoneUS?: boolean, AWSSigningSecret?: string, BlockedCountries?: string[], EnableCacheSlice?: boolean, AWSSigningEnabled?: boolean, EnableGeoZoneASIA?: boolean, LogForwardingPort?: integer, AddCanonicalHeader?: boolean, EnableHostnameVary?: boolean, EnableOriginShield?: boolean, IgnoreQueryStrings?: boolean, LogForwardingToken?: string, CacheErrorResponses?: boolean, AWSSigningRegionName?: string, LogForwardingEnabled?: boolean, LoggingSaveToStorage?: boolean, LoggingStorageZoneId?: integer, OriginShieldZoneCode?: string, EnableCountryCodeVary?: boolean, LogForwardingHostname?: string, BudgetRedirectedCountries?: string[], EnableQueryStringOrdering?: boolean, CacheControlMaxAgeOverride?: integer }
- `POST https://api.mcp.ai/api/bunnycdn/update/shield/bot/detection` — Tool to update bot detection configuration for a specific Shield Zone. Use when you need to modify bot detection settings, sensitivity levels, or execution mode. Note: Bot detection requires Advanced 
  - body: { ipAddress?: object, shieldZoneId: integer, executionMode?: string, requestIntegrity?: object, browserFingerprint?: object }
- `POST https://api.mcp.ai/api/bunnycdn/update/shield/rate/limit/id` — Tool to update a specific rate limit configuration by its ID. Use when you need to modify settings of an existing shield rate limit rule such as request thresholds, timeframes, or action types.
  - body: { id: integer, ruleName?: string, ruleDescription?: string, ruleConfiguration?: object }
- `POST https://api.mcp.ai/api/bunnycdn/update/shield/zone` — Tool to update configuration settings for a Shield Zone. Use when you need to modify DDoS protection settings, WAF rules, or security configurations.
  - body: { shieldZone: object, shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/update/shield/zone/access/list` — Tool to update a custom access list in a Shield Zone. Use when you need to modify an access control rule's name, content, or checksum.
  - body: { id: integer, name?: string, content?: string, checksum?: string, shieldZoneId: integer }
- `POST https://api.mcp.ai/api/bunnycdn/update/shield/zone/access/list/configuration` — Tool to update an access list configuration in a Shield Zone. Use when you need to modify the action or enabled state of an existing access list configuration.
  - body: { id: integer, action?: string, is_enabled?: boolean, shield_zone_id: integer }
- `POST https://api.mcp.ai/api/bunnycdn/update/shield/zone/upload/scanning` — Tool to update upload scanning settings for a shield zone. Use when you need to configure antivirus and CSAM scanning for uploaded files.
  - body: { is_enabled?: boolean, shield_zone_id: integer, csam_scanning_mode?: string, antivirus_scanning_mode?: string }
- `POST https://api.mcp.ai/api/bunnycdn/update/storage/zone` — Tool to update settings for a specific storage zone. Updates are applied immediately and can destructively alter storage zone configuration. Verify the correct `id` and confirm intended changes before
  - body: { id: integer, OriginUrl?: string, Rewrite404To200?: boolean, ReplicationZones?: string[], Custom404FilePath?: string }
- `POST https://api.mcp.ai/api/bunnycdn/update/user/details` — Tool to update the currently authorized user's account details. Use when modifying user profile information, billing details, or email preferences.
  - body: { City?: string, Email?: string, Country?: string, ZipCode?: string, LastName?: string, Password?: string, DmcaEmail?: string, FirstName?: string, VATNumber?: string, CompanyName?: string, OldPassword?: string, BillingEmail?: string, StreetAddress?: string, ReceivePromotionalEmails?: boolean, ReceiveNotificationEmails?: boolean }
- `POST https://api.mcp.ai/api/bunnycdn/validate/origin/url/pull/zone` — Tool to validate an origin URL before creating or configuring a pull zone. Use when you need to verify that an origin URL is accessible and properly configured for use with BunnyCDN.
  - body: { OriginUrl: string }

## Example prompts
- "What can I do in BunnyCDN?"
- "Show me a summary of my BunnyCDN account"

## More
- Page: https://mcp.ai/bunnycdn
- Agent spec (llms.txt): https://mcp.ai/bunnycdn/llms.txt
- Postman collection: https://mcp.ai/bunnycdn/postman.json
