← all treatments · the spa floor
💆
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.
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... }'
{
"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.