data
DigitalOcean MCP, CLI, and Lua Integration for AI Agents
DigitalOcean integration docs for AI agents: MCP gateway setup, DigitalOcean CLI commands, Lua API reference, credentials, and function schemas.DigitalOcean for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
digitalocean.digitalocean_list_droplets | Read read | 2 | List all droplets (virtual machines) in the DigitalOcean account. Returns IDs, names, status, size, region, and IP addresses. |
digitalocean.digitalocean_get_droplet | Read read | 1 | Get details for a specific DigitalOcean droplet by ID. Returns full droplet information including networks, image, and region. |
digitalocean.digitalocean_create_droplet | Write write | 9 | Create a new DigitalOcean droplet (virtual machine). Requires a name, region, size, and image. |
digitalocean.digitalocean_delete_droplet | Write write | 1 | Permanently delete a DigitalOcean droplet. This action is irreversible and will destroy all data on the droplet. |
digitalocean.digitalocean_reboot_droplet | Write write | 1 | Reboot a DigitalOcean droplet. The droplet will be power-cycled and will be temporarily unavailable. |
digitalocean.digitalocean_list_domains | Read read | 2 | List all DNS domains managed in the DigitalOcean account. |
digitalocean.digitalocean_get_domain | Read read | 1 | Get details for a specific DNS domain in DigitalOcean, including zone file and TTL information. |
digitalocean.digitalocean_list_spaces | Read read | 7 | List DigitalOcean Spaces access keys. Bucket/object listing uses the separate S3-compatible Spaces API, not this bearer-token API. |
digitalocean.digitalocean_list_kubernetes | Read read | 2 | List Kubernetes (DOKS) clusters in the DigitalOcean account. |
digitalocean.digitalocean_get_current_user | Read read | 0 | Get information about the current authenticated DigitalOcean account, including email, UUID, and status. |