Open Context Protocol is live! 🚀 Read the launch post

startInstances

Start instances

Details

  • Method: POST
  • Path: /instances/start
  • Operation ID: start-instances

Parameters

{
  "instance_ids": {
    "description": "The [Instance IDs](#operation/list-instances) to start.",
    "required": false,
    "location": "body",
    "type": "array"
  }
}

Usage

from ocp_agent import OCPAgent

agent = OCPAgent()
await agent.register_api('vultr')

# Call this tool
result = await agent.call_tool('startInstances', {
    # Add required parameters here
})