generate_database_token
Create a new token with specified permissions for a Turso database using the MCP server, enabling secure access and management of database operations.
Instructions
Generate a new token for a specific database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | Yes | Name of the database to generate a token for | |
permission | No | Permission level for the token |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"description": "Name of the database to generate a token for",
"type": "string"
},
"permission": {
"description": "Permission level for the token",
"enum": [
"full-access",
"read-only"
],
"type": "string"
}
},
"required": [
"database"
],
"type": "object"
}