Tool details
| Field | Value |
|---|---|
| Name | create_server |
| Group | Servers |
Playground
Input schema
Input schema
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"description": "Project ID or slug"
},
"environment_id": {
"type": "string",
"description": "Environment ID to create the server for"
}
},
"required": [
"project_reference",
"environment_id"
],
"additionalProperties": false,
"description": "Input schema for the create_server tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
Output schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the returned record."
},
"short_id": {
"type": "string",
"description": "The short id associated with this tool result."
},
"user_id": {
"type": "string",
"description": "The user id associated with this tool result."
},
"environment_ids": {
"type": "array",
"items": {
"type": "string",
"description": "One environment id item associated with this tool result."
},
"description": "List of environment ids associated with this tool result."
},
"hostname": {
"type": "string",
"description": "The hostname associated with this tool result."
},
"status": {
"type": "string",
"description": "Lifecycle status for the returned record."
},
"created_at": {
"type": "string",
"description": "Creation timestamp in ISO 8601 format."
},
"updated_at": {
"type": "string",
"description": "Last update timestamp in ISO 8601 format."
}
},
"required": [
"id",
"short_id",
"user_id",
"environment_ids",
"hostname",
"status",
"created_at",
"updated_at"
],
"additionalProperties": false,
"description": "One server item associated with this tool result.",
"$schema": "http://json-schema.org/draft-07/schema#"
}