Frontmatter
| id | 8198 |
| title | [Memory Core] Fix timestamp schema validation error in get_all_summaries |
| state | Closed |
| labels | bugai |
| assignees | tobiu |
| createdAt | Dec 29, 2025, 6:13 AM |
| updatedAt | Dec 29, 2025, 6:20 AM |
| githubUrl | https://github.com/neomjs/neo/issues/8198 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Dec 29, 2025, 6:20 AM |
The
get_all_summariestool fails with a schema validation error because it returns a numeric timestamp from ChromaDB, while the OpenAPI schema expects an ISO 8601 string.Error:
MCP error -32602: Structured content does not match the tool's output schema: data/summaries/0/timestamp must be stringProposed Fix: Update
ai/mcp/server/memory-core/services/SummaryService.mjsto convert thetimestampmetadata to an ISO string in bothlistSummariesandquerySummaries.