create_database
Create a new database in your Turso organization by specifying the name, optional group, and regions for deployment using the MCP server.
Instructions
Create a new database in your Turso organization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
group | No | Optional group name for the database | |
name | Yes | Name of the database to create | |
regions | No | Optional list of regions to deploy the database to |
Input Schema (JSON Schema)
{
"properties": {
"group": {
"description": "Optional group name for the database",
"type": "string"
},
"name": {
"description": "Name of the database to create",
"type": "string"
},
"regions": {
"description": "Optional list of regions to deploy the database to",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name"
],
"type": "object"
}