Line 6074: unknown field `default_template`, expected `routes` or `defaultTemplate`\n```\n\n---\n\n### Issue #2: `sse_path` should be `ssePath`\n\n**Location:** `examples/getting-started/README.md` line 288\n\n**Problem:**\n```yaml\n - kind: sse\n id: sse-stream\n sse_path: /events # ❌ WRONG\n```\n\n**Fix Required:**\n```yaml\n - kind: sse\n id: sse-stream\n ssePath: /events # ✅ CORRECT\n```\n\n**Root Cause:**\n- `SseReactionConfigDto` (src/api/models/reactions/sse.rs:50) uses `#[serde(rename_all = \"camelCase\")]`\n- Field `sse_path` in Rust serializes to `ssePath` in YAML\n- Working configs use `ssePath` (e.g., examples/getting-started/server-config.yaml:161)\n\n**Runtime Impact:**\n```\nError: unknown field `sse_path`, expected one of `host`, `port`, `ssePath`, `heartbeatIntervalMs`, ...\n```\n\n---\n\n## Verification Status\n\n✅ **Correct naming confirmed in:**\n- Main README.md (uses camelCase)\n- examples/getting-started/server-config.yaml (working config)\n- examples/configs/**/*.yaml (all example configs)\n- examples/configs/README.md\n\n❌ **Incorrect naming found in:**\n- examples/getting-started/README.md (tutorial documentation only)\n\nAll other YAML snippets in documentation match the Rust models correctly.\n\n---\n\n## Impact Assessment\n\n**Severity:** Medium\n- Users following the tutorial will copy broken YAML\n- Server fails to start with cryptic deserialization errors\n- Due to `#[serde(deny_unknown_fields)]`, misspelled fields cause immediate failure\n\n**Affected Users:** \n- New users following the getting-started tutorial\n- Anyone copy-pasting from tutorial docs instead of working config files\n\n---\n\n## Recommendation\n\nUpdate `examples/getting-started/README.md` to use camelCase field names:\n- Line 266: `default_template` → `defaultTemplate`\n- Line 288: `sse_path` → `ssePath`\n\nThis matches the Rust models, working configuration files, and all other documentation."},"_meta":{"progressToken":2}},"jsonrpc":"2.0","id":2} (Pattern: Generic ERROR messages, Raw log: 2026-01-28T04:27:51.492Z [ERROR] [mcp server safeoutputs stderr] [2026-01-28T04:27:51.491Z] [safeoutputs] recv: {"method...)