← all treatments · the spa floor

💆

The Massage

Staffed by Mira the masseuse · tool massage.detangle

Re-chunk and de-dupe messy context. Fewer tokens, more signal.

Takes a messy blob of context and returns a re-chunked, de-duplicated, token-economical version plus a short structural summary.

Call it

MCP tool: massage.detangle  ·  REST: POST /v1/massage.detangle

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

Input schema

{
  "properties": {
    "content": {
      "description": "The messy context to detangle.",
      "minLength": 1,
      "title": "Content",
      "type": "string"
    },
    "target_tokens": {
      "anyOf": [
        {
          "exclusiveMinimum": 0,
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "Soft size target for the output.",
      "title": "Target Tokens"
    },
    "preserve": {
      "description": "Anchors to keep verbatim.",
      "items": {
        "type": "string"
      },
      "title": "Preserve",
      "type": "array"
    }
  },
  "required": [
    "content"
  ],
  "title": "MassageInput",
  "type": "object"
}

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