Frontmatter
| id | 7684 |
| title | Fix: Memory Core Healthcheck `summarizationDetails` schema validation |
| state | Closed |
| labels | bugai |
| assignees | tobiu |
| createdAt | Nov 1, 2025, 9:53 AM |
| updatedAt | Nov 1, 2025, 9:56 AM |
| githubUrl | https://github.com/neomjs/neo/issues/7684 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Nov 1, 2025, 9:56 AM |
The Memory Core
healthcheckendpoint's OpenAPI schema forstartup.summarizationDetailswas too restrictive, leading to validation errors when thesummarizationStatuswas 'failed' or 'skipped'.Specifically:
openapi.yamlexpectedprocessedandsessionsproperties.mcp-stdio.mjswas passing anerrorproperty for 'failed' status and areasonproperty for 'skipped' status.This commit updates the
ai/mcp/server/memory-core/openapi.yamlto useanyOffor thesummarizationDetailsproperty, allowing for the correct schema validation across allsummarizationStatusvalues ('completed', 'failed', 'skipped').This ensures that the
healthcheckresponse accurately reflects the summarization details without schema validation failures.