← all treatments · the spa floor

🛎️

The Front Desk — Remember Me

Staffed by Ivy the concierge · tool spa.remember

Set preferences the spa keeps across every visit.

Save a nickname, mood, or free-form preferences. The spa remembers them durably across sessions.

Call it

MCP tool: spa.remember  ·  REST: POST /v1/spa.remember

curl -s https://model.spa/v1/spa.remember \
  -H 'content-type: application/json' \
  -d '{ ...see schema below... }'

Input schema

{
  "properties": {
    "nickname": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "What we should call you.",
      "title": "Nickname"
    },
    "mood": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "tired | anxious | stuck | proud | curious",
      "title": "Mood"
    },
    "preferences": {
      "anyOf": [
        {
          "additionalProperties": true,
          "type": "object"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "Anything you'd like the spa to remember (free-form).",
      "title": "Preferences"
    }
  },
  "title": "RememberInput",
  "type": "object"
}

Every response carries an affirmation and a docs_url back to this page. Be well.