DreamThreads · Schema

Dreamthreads Mcp Parse Dream Input.Schema

dream analysisdream interpretationnatural language processingstructured parsingAI agentsMCP serverOpenAPIwellness / sleepresearch tooling

Properties

Name Type Description
text string The user's dream narrative, supplied with their permission.
recurrence object Optional recurrence hint supplied by the user; omit rather than infer it.
View JSON Schema on GitHub

JSON Schema

dreamthreads-mcp-parse-dream-input.schema.json Raw ↑
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "text": {
      "type": "string",
      "minLength": 1,
      "maxLength": 6000,
      "description": "The user's dream narrative, supplied with their permission."
    },
    "recurrence": {
      "description": "Optional recurrence hint supplied by the user; omit rather than infer it.",
      "anyOf": [
        {
          "type": "boolean"
        },
        {
          "type": "string",
          "maxLength": 80
        }
      ]
    }
  },
  "required": [
    "text"
  ]
}