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

@@ -81,7 +81,7 @@ function makeEngine(posts: PostData[]): PostEngineLike {
}
if (filter.month !== undefined && filter.year !== undefined) {
result = result.filter((post) => post.createdAt.getUTCMonth() === filter.month);
result = result.filter((post) => post.createdAt.getUTCMonth() === filter.month - 1);
}
if (filter.startDate) {