feat: more work on mcp server integration

This commit is contained in:
2026-02-28 12:36:13 +01:00
parent e71e478776
commit 6c22e69805
36 changed files with 1420 additions and 635 deletions

View File

@@ -86,7 +86,7 @@ describe('GenerationRouteRendererFactory', () => {
}
if (typeof filter.month === 'number') {
filtered = filtered.filter((post) => post.createdAt.getMonth() === filter.month);
filtered = filtered.filter((post) => post.createdAt.getMonth() === filter.month - 1);
}
if (filter.startDate) {