call_digitalocean_api
Interact with DigitalOcean API endpoints by specifying operation IDs and parameters, enabling direct API calls through the DigitalOcean MCP Server for streamlined cloud management.
Instructions
Call a DigitalOcean API endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
operationId | Yes | Operation ID of the endpoint to call | |
parameters | No | Parameters for the API call |
Input Schema (JSON Schema)
{
"properties": {
"operationId": {
"description": "Operation ID of the endpoint to call",
"type": "string"
},
"parameters": {
"additionalProperties": true,
"description": "Parameters for the API call",
"type": "object"
}
},
"required": [
"operationId"
],
"type": "object"
}