save_token
Store your Kinde authentication token to enable persistent access to your todo management system and maintain session continuity across interactions.
Instructions
Save your Kinde authentication token for future use
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | Your Kinde JWT token |
Input Schema (JSON Schema)
{
"properties": {
"token": {
"description": "Your Kinde JWT token",
"type": "string"
}
},
"required": [
"token"
],
"type": "object"
}