Skip to content

Releases: RamidLab/mcp-service-template

Release list

v0.2.0

Choose a tag to compare

@RamidLab RamidLab released this 26 Aug 03:55

Added

  • 通用基础设施:
    • utils/rate_limiter.py: 按 key 限速器(KeyRateLimiter + 全局单例,随机抖动)。
    • utils/spill.py: 大结果溢出(LargeResultWriter + sweep_spill_dir,原子写入 + 启动清扫)。
    • utils/cron.py: 标准 5 段 cron 表达式解析(CronExpression)。
    • utils/export.py: BOM 安全 CSV 导出助手(csv_bom / rows_to_csv)。
    • task/: 通用后台任务包(TaskManager 生命周期管理 + TaskScheduler cron 调度,runner 注入式)。
    • tools/export_tools.py: CSV 导出示例工具 export_products_csv(复用动态 Filter + rows_to_csv)。
    • 新增单元测试:test_rate_limiter.py / test_spill.py / test_cron.py / test_task_manager.py / test_export.py

v0.1.1

Choose a tag to compare

@RamidLab RamidLab released this 20 Aug 08:57

Added

  • JWT Token 存储与自动续期: AuthContext 新增 access_token 字段,JWTAuthMiddleware 支持后端返回 new_access_token 自动续期。

Changed

  • 日志抑制: server.py 屏蔽 uvicorn、httpx、httpcore、aiohttp 请求日志。