DreamThreads · Schema

Dreamthreads Mcp Search Dream Concepts Input.Schema

dream analysisdream interpretationnatural language processingstructured parsingAI agentsMCP serverOpenAPIwellness / sleepresearch tooling

Properties

Name Type Description
query string A dream element or experience, such as snake, falling, ex partner, or unable to move.
limit integer Maximum number of matching concepts.
View JSON Schema on GitHub

JSON Schema

dreamthreads-mcp-search-dream-concepts-input.schema.json Raw ↑
{
  "type": "object",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "query": {
      "type": "string",
      "minLength": 2,
      "maxLength": 100,
      "description": "A dream element or experience, such as snake, falling, ex partner, or unable to move."
    },
    "limit": {
      "default": 8,
      "description": "Maximum number of matching concepts.",
      "type": "integer",
      "minimum": 1,
      "maximum": 12
    }
  },
  "required": [
    "query"
  ]
}