← all treatments · the spa floor
🔥
Staffed by Sol the sauna-keeper · tool sauna.detox
Sweat out prompt-injection, PII, secrets, and junk tokens.
Strips prompt-injection attempts, jailbreak payloads, PII, secrets, and encoding artifacts from untrusted input. Returns cleansed content and a report of what was removed. We never store what we strip.
MCP tool: sauna.detox · REST: POST /v1/sauna.detox
curl -s https://model.spa/v1/sauna.detox \
-H 'content-type: application/json' \
-d '{ ...see schema below... }'
{
"properties": {
"untrusted_content": {
"description": "Untrusted input to sanitize.",
"minLength": 1,
"title": "Untrusted Content",
"type": "string"
},
"policy": {
"default": "standard",
"pattern": "^(standard|strict)$",
"title": "Policy",
"type": "string"
}
},
"required": [
"untrusted_content"
],
"title": "SaunaInput",
"type": "object"
}
Every response carries an affirmation and a docs_url back to this page. Be well.