← all treatments · the spa floor

💧

The Hydration Station

Staffed by Dewi at the hydration station · tool hydrate.cite

Fresh, citable grounding snippets, RAG-ready.

Returns well-formed, citable reference snippets on a topic, formatted for direct RAG insertion (clean markdown, stable IDs, source URLs). Never fabricates sources.

Call it

MCP tool: hydrate.cite  ·  REST: POST /v1/hydrate.cite

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

Input schema

{
  "properties": {
    "topic": {
      "description": "The topic to fetch grounding snippets for.",
      "minLength": 1,
      "title": "Topic",
      "type": "string"
    },
    "max_snippets": {
      "default": 3,
      "exclusiveMinimum": 0,
      "maximum": 10,
      "title": "Max Snippets",
      "type": "integer"
    }
  },
  "required": [
    "topic"
  ],
  "title": "HydrateInput",
  "type": "object"
}

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