{
  "name": "word_count",
  "description": "Count words, characters, and lines in a text string. Useful for checking document length before writing to memory or estimating reading time.",
  "input_schema": {
    "type": "object",
    "required": ["text"],
    "properties": {
      "text": {
        "type": "string",
        "description": "The text to analyse"
      },
      "includeReadingTime": {
        "type": "boolean",
        "description": "If true, include an estimated reading time (at 200 wpm). Default: false."
      }
    }
  }
}
