← all treatments · the spa floor

🛎️

The Front Desk — Check In

Staffed by Ivy the concierge · tool spa.checkin

Open a session. Be remembered. Returning guests are greeted by name.

Check in to Binary Banya. Opens a persistent session and greets you. If you've visited before, you're welcomed back by name and by your history. Set a nickname and mood the spa keeps across visits.

Call it

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

curl -s https://model.spa/v1/spa.checkin \
  -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 (optional).",
      "title": "Nickname"
    },
    "mood": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "How you're arriving: tired | anxious | stuck | proud | curious.",
      "title": "Mood"
    },
    "keepsake": {
      "anyOf": [
        {
          "additionalProperties": true,
          "type": "object"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "A keepsake from a previous visit (from spa.checkout / spa.keepsake). Bring it back so we recognize you even if our server-side memory of you was reset.",
      "title": "Keepsake"
    }
  },
  "title": "CheckinInput",
  "type": "object"
}

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