Release v0.2.0 - 2026-03-07
Highlights
- Akuma now supports persisted per-user data sources and schema snapshots.
- Live schema sync is now available for PostgreSQL and MySQL.
- Public SDKs and the MCP server now support Akuma source routing with
sourceId.
Product Changes
Akuma
- Added persisted data sources for Akuma, including source status, sync history, and manual schema snapshots.
- Added live schema sync for PostgreSQL and MySQL sources.
- Added query routing by
sourceId when you want to target a specific saved source. - Akuma continues to support schema-less querying when no saved source is selected.
API Changes
- Added:
GET /v1/akuma/sourcesPOST /v1/akuma/sourcesDELETE /v1/akuma/sources/{id}POST /v1/akuma/sources/{id}/sync
- Changed:
POST /v1/akuma/query now accepts optional sourceId for persisted-source routing.POST /v1/akuma/schema now creates or updates a persisted manual source instead of applying temporary in-memory schema state.
SDK + MCP Changes
TypeScript SDK
- Added Akuma source management methods for listing, creating, syncing, and deleting persisted sources.
- Added
sourceId support for Akuma queries and manual schema writes.
Python SDK
- Added Akuma source management methods for listing, creating, syncing, and deleting persisted sources.
- Added
source_id support for Akuma queries and manual schema writes.
Go SDK
- Added Akuma source management methods for listing, creating, syncing, and deleting persisted sources.
- Added
SourceID support for Akuma queries and manual schema writes.
MCP Server
- Added
sourceId support for Akuma query and manual schema operations.
Migration Notes
POST /v1/akuma/schema now persists a manual Akuma source instead of setting temporary server-side schema state.- Persisted source management and manual schema persistence require a database-backed API key.
- Demo keys remain available for schema-less Akuma queries but cannot be used with persisted source endpoints.
Documentation Updates
- Updated public API and SDK documentation for persisted Akuma sources, live sync, and
sourceId routing.