{
  "info": {
    "name": "DigitalOcean — mcp.ai",
    "description": "REST API for the DigitalOcean MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/digital_ocean",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "digital_ocean_create_custom_image",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/custom/image",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "custom",
            "image"
          ]
        },
        "description": "Tool to create a new custom image by providing a url to a linux vm image. use when you need to import a vm image into digitalocean after specifying name, url, distribution, and region.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"region\": \"\",\n  \"description\": \"\",\n  \"distribution\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_create_database_cluster",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/database/cluster",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "database",
            "cluster"
          ]
        },
        "description": "Tool to create a new managed database cluster. use when you need to provision a database cluster with name, engine, version, region, size, and number of nodes.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"size\": \"\",\n  \"tags\": \"\",\n  \"engine\": \"\",\n  \"region\": \"\",\n  \"version\": \"\",\n  \"db_names\": \"\",\n  \"sql_mode\": \"\",\n  \"num_nodes\": 0,\n  \"user_names\": \"\",\n  \"backup_restore\": {},\n  \"eviction_policy\": \"\",\n  \"storage_size_gb\": 0,\n  \"maintenance_window\": {},\n  \"private_network_uuid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_create_new_block_storage_volume",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/new/block/storage/volume",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "new",
            "block",
            "storage",
            "volume"
          ]
        },
        "description": "Tool to create a new block storage volume. use when you need to provision persistent block storage after confirming the target region supports volumes. example: \"create a 100 gib ext4 backup volume na",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"region\": \"\",\n  \"description\": \"\",\n  \"snapshot_id\": \"\",\n  \"size_gigabytes\": 0,\n  \"filesystem_type\": \"\",\n  \"filesystem_label\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_create_new_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/new/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "new",
            "domain"
          ]
        },
        "description": "Tool to create a new domain. use when you have the domain name and optionally an ip address to assign an a record.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"ip_address\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_create_new_domain_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/new/domain/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "new",
            "domain",
            "record"
          ]
        },
        "description": "Tool to create a new dns record for a domain. use after confirming domain exists and record specifics.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag\": \"\",\n  \"ttl\": 0,\n  \"data\": \"\",\n  \"name\": \"\",\n  \"port\": 0,\n  \"type\": \"\",\n  \"flags\": 0,\n  \"weight\": 0,\n  \"priority\": 0,\n  \"domain_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_create_new_droplet",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/new/droplet",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "new",
            "droplet"
          ]
        },
        "description": "Tool to create a new droplet. use when you need to provision a vm with name, region, size, and image.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ipv6\": false,\n  \"name\": \"\",\n  \"size\": \"\",\n  \"tags\": \"\",\n  \"image\": \"\",\n  \"region\": \"\",\n  \"backups\": false,\n  \"volumes\": \"\",\n  \"ssh_keys\": \"\",\n  \"vpc_uuid\": \"\",\n  \"user_data\": \"\",\n  \"monitoring\": false,\n  \"private_networking\": false,\n  \"with_droplet_agent\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_create_new_firewall",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/new/firewall",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "new",
            "firewall"
          ]
        },
        "description": "Tool to create a new firewall. use when you need to define a firewall name and custom rules (requires at least one inbound and one outbound rule).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"vpc_uuid\": \"\",\n  \"droplet_ids\": \"\",\n  \"inbound_rules\": \"\",\n  \"outbound_rules\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_create_new_kubernetes_cluster",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/new/kubernetes/cluster",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "new",
            "kubernetes",
            "cluster"
          ]
        },
        "description": "Tool to create a new kubernetes cluster. use when you have finalized the cluster name, region, version, and at least one node pool. confirm region supports kubernetes clusters before use.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"region\": \"\",\n  \"version\": \"\",\n  \"node_pools\": \"\",\n  \"auto_upgrade\": false,\n  \"maintenance_policy\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_create_new_ssh_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/new/ssh/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "new",
            "ssh",
            "key"
          ]
        },
        "description": "Tool to create a new ssh key. use when you need to register a public key to access droplets.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"public_key\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_create_new_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/new/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "new",
            "tag"
          ]
        },
        "description": "Tool to create a new tag. use when you need to organize resources by grouping them under a custom tag. ensure the tag name passes validation before calling. example: \"create a new tag named analytics\"",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_create_new_vpc",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/new/vpc",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "new",
            "vpc"
          ]
        },
        "description": "Tool to create a new vpc. use when you need to provision a private network in a specific region.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"region\": \"\",\n  \"ip_range\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_delete_block_storage_volume",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/block/storage/volume",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "block",
            "storage",
            "volume"
          ]
        },
        "description": "Tool to delete a block storage volume by id. use when you need to permanently remove an existing block storage volume after confirming its id. returns http 204 no content on success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"region\": \"\",\n  \"volume_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_delete_database_cluster",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/database/cluster",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "database",
            "cluster"
          ]
        },
        "description": "Tool to delete a database cluster by uuid. use when you have confirmed the cluster is no longer needed. returns http 204 no content on success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"database_cluster_uuid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_delete_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "domain"
          ]
        },
        "description": "Tool to delete a domain by name. use when you have confirmed the domain has no records assigned. returns 204 no content on success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_delete_domain_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/domain/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "domain",
            "record"
          ]
        },
        "description": "Tool to delete a dns record by its record id for a domain. use when you need to remove an existing dns record and have the domain name and record id. returns http 204 no content on success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"record_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_delete_existing_droplet",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/existing/droplet",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "existing",
            "droplet"
          ]
        },
        "description": "Tool to delete a droplet by id. use when you need to permanently remove an existing droplet after confirming its id to avoid unintended deletions.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"droplet_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_delete_firewall",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/firewall",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "firewall"
          ]
        },
        "description": "Tool to delete a firewall by id. use when you have confirmed the firewall is no longer needed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"firewall_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_delete_image",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/image",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "image"
          ]
        },
        "description": "Tool to delete a snapshot or custom image by id. use when cleaning up unused images after confirming there are no dependents.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"image_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_delete_load_balancer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/load/balancer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "load",
            "balancer"
          ]
        },
        "description": "Tool to delete a load balancer instance by id. use when you need to permanently remove an existing load balancer after confirming its id. returns 204 no content on success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"load_balancer_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_delete_ssh_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/ssh/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "ssh",
            "key"
          ]
        },
        "description": "Tool to delete a public ssh key. use when you need to remove an ssh key from your account by its id or fingerprint after confirming its ownership. returns 204 no content on success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key_id_or_fingerprint\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_delete_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "tag"
          ]
        },
        "description": "Tool to delete a tag by name. use when you need to untag all resources previously tagged. returns 204 no content on success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_delete_vpc",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/vpc",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "vpc"
          ]
        },
        "description": "Tool to delete a vpc by its id. use when you need to remove an existing virtual private cloud. returns 204 no content on success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"vpc_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_digital_ocean_create_new_load_balancer",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/digital/ocean/create/new/load/balancer",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "digital",
            "ocean",
            "create",
            "new",
            "load",
            "balancer"
          ]
        },
        "description": "Tool to create a new load balancer. use after specifying region, forwarding rules, and targets.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag\": \"\",\n  \"name\": \"\",\n  \"region\": \"\",\n  \"vpc_uuid\": \"\",\n  \"algorithm\": \"\",\n  \"droplet_ids\": \"\",\n  \"health_check\": {},\n  \"firewall_policy\": \"\",\n  \"sticky_sessions\": {},\n  \"forwarding_rules\": \"\",\n  \"enable_proxy_protocol\": false,\n  \"redirect_http_to_https\": false,\n  \"enable_backend_keepalive\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_digital_ocean_list_domain_records",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/digital/ocean/list/domain/records",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "digital",
            "ocean",
            "list",
            "domain",
            "records"
          ]
        },
        "description": "Tool to list all dns records for a domain. use when you need to inspect or filter a domain's dns configuration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"page\": 0,\n  \"type\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_list_all_databases",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/databases",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "databases"
          ]
        },
        "description": "Tool to list all managed database clusters on your account. use when you need to retrieve clusters and support pagination or filtering by tag.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"tag_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_list_all_domains",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/domains",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "domains"
          ]
        },
        "description": "Tool to list all domains in your digitalocean account. use when you need to retrieve or iterate through domains, with optional pagination. use after authentication.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_list_all_droplets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/droplets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "droplets"
          ]
        },
        "description": "Tool to list all droplets in your account. use when you need an overview of droplets, optionally filtered by tag. use after authentication.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"tag_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_list_all_firewalls",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/firewalls",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "firewalls"
          ]
        },
        "description": "Tool to list all firewalls on your digitalocean account. use when you need to audit or manage firewall rules with optional pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_list_all_images",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/images",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "images"
          ]
        },
        "description": "Tool to list all images available on your account. use after obtaining a valid api token to retrieve images optionally filtered by type, private visibility, or tag name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"type\": \"\",\n  \"private\": false,\n  \"per_page\": 0,\n  \"tag_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_list_all_kubernetes_clusters",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/kubernetes/clusters",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "kubernetes",
            "clusters"
          ]
        },
        "description": "Tool to list all kubernetes clusters on your account. use when you need to enumerate every cluster and handle pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_list_all_load_balancers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/load/balancers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "load",
            "balancers"
          ]
        },
        "description": "Tool to list all load balancer instances on your account. use when you need a paginated overview of load balancers after authentication.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_list_all_snapshots",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/snapshots",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "snapshots"
          ]
        },
        "description": "Tool to list all snapshots available on your digitalocean account. use when you need to fetch and optionally filter snapshots by resource type (droplet or volume) and handle pagination for inventory o",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0,\n  \"resource_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_list_all_ssh_keys",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/ssh/keys",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "ssh",
            "keys"
          ]
        },
        "description": "Tool to list all ssh keys in your account. use when you need to retrieve ssh key metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_list_all_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "tags"
          ]
        },
        "description": "Tool to list all tags in your account. use when you need to retrieve available tags and pagination info.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_list_all_volumes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/volumes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "volumes"
          ]
        },
        "description": "Tool to list all block storage volumes available on your account. use when you need to retrieve volumes and optionally filter by name and region.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"page\": 0,\n  \"region\": \"\",\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_list_all_vpcs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/all/vpcs",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "all",
            "vpcs"
          ]
        },
        "description": "Tool to list all vpcs on your account. use when you need an inventory of your vpc resources; supports pagination.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"per_page\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_list_database_options",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/database/options",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "database",
            "options"
          ]
        },
        "description": "Tool to list valid database engine, version, region, and size options. use when configuring a new managed database cluster.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_retrieve_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "domain"
          ]
        },
        "description": "Tool to retrieve details about a specific domain by its name. use after creating or importing a domain to verify ttl and zone file configuration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_retrieve_domain_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/domain/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "domain",
            "record"
          ]
        },
        "description": "Tool to retrieve a specific dns record for a domain by its record id. use when you have the domain name and record id to fetch record details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"record_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_retrieve_existing_droplet",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/existing/droplet",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "existing",
            "droplet"
          ]
        },
        "description": "Tool to show information about an individual droplet by id. use when you have a droplet id and need detailed status.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"droplet_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_retrieve_existing_image",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/existing/image",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "existing",
            "image"
          ]
        },
        "description": "Tool to retrieve information about an image by id or slug. use when you need detailed metadata for a known image.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"image_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_retrieve_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "tag"
          ]
        },
        "description": "Tool to retrieve an individual tag by name. use when you need to inspect the resources grouped under a specific tag.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_retrieve_vpc",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/vpc",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "vpc"
          ]
        },
        "description": "Tool to retrieve details about a specific vpc by its id. use when you need to inspect vpc properties for configuration or auditing.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"vpc_uuid\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_tag_resource",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/tag/resource",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "tag",
            "resource"
          ]
        },
        "description": "Tool to tag resources by name. use when you need to assign an existing tag to one or more resources. returns 204 no content on success.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag_name\": \"\",\n  \"resources\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_untag_resource",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/untag/resource",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "untag",
            "resource"
          ]
        },
        "description": "Tool to untag resources by tag name. use when you need to remove an existing tag from multiple resources in a single operation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag_name\": \"\",\n  \"resources\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_update_domain_record",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/domain/record",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "domain",
            "record"
          ]
        },
        "description": "Tool to update an existing dns record for a domain. use when you need to modify any valid attribute of a record after confirming its record id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag\": \"\",\n  \"ttl\": 0,\n  \"data\": \"\",\n  \"name\": \"\",\n  \"port\": 0,\n  \"type\": \"\",\n  \"flags\": 0,\n  \"weight\": 0,\n  \"priority\": 0,\n  \"record_id\": 0,\n  \"domain_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "digital_ocean_update_vpc",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/vpc",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "vpc"
          ]
        },
        "description": "Tool to update information about a vpc. use when you need to modify the name, description, or default status of an existing vpc.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"vpc_id\": \"\",\n  \"default\": false,\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}