update_writing_style
Update writing style
Saves the account writing-style profile (same as Settings → Your writing style). Marks it as manually edited so contact sync will not overwrite it. Pass a short style guide (tone, length, greetings, words to avoid) — not only a sample message. Pass null to clear.
Annotations
{
"title": "Update writing style",
"readOnlyHint": false,
"destructiveHint": false,
"openWorldHint": false,
"idempotentHint": true
}Input
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"profile": {
"anyOf": [
{
"type": "string",
"maxLength": 2000
},
{
"type": "null"
}
],
"description": "Style guide under 2000 characters, or null to clear the saved profile"
}
},
"required": [
"profile"
],
"additionalProperties": false
}Auth
Bearer personal token (ml_…) or OAuth access token (mla_…). Memlane Pro and iCloud required.
Errors
- 401 missing or invalid credentials
- 403 account is not Pro or iCloud is not connected
- 429 rate limit
- Tool errors return isError text without a stack trace