Skip to content

Known Limitations

This page lists the current limits of Quater so you can decide whether it fits your project today.

Prerequisites

Read Why Quater Exists first. This page is about the current pre-release framework, not the long-term ambition.

Current Limits

Quater is pre-release. It is useful for evaluating the human-and-agent backend model, but it does not yet cover every feature a mature production framework usually provides.

AreaCurrent stateWhat to do today
WebSocketsNo framework-level WebSocket API yet.Use a separate ASGI app or wait for Quater support.
ORM and migrationsQuater does not ship a database layer.Use SQLAlchemy, SQLModel, Piccolo, or another library.
Background jobsNo built-in task queue.Use a separate worker system.
Rate limitingNo framework-level limiter yet.Put rate limiting at a proxy or middleware layer.
Static filesNot a primary framework feature.Serve static assets from your frontend host or edge layer.
MCP streaminginitialize, tools/list, and tools/call are supported. Streaming progress is not.Keep tools short-running or report progress through your app today.
File uploads over MCP/CLIHTTP routes support form fields and multipart uploads. MCP tools and CLI actions do not expose File parameters yet.Keep upload routes HTTP-only, then expose a separate route for the follow-up operation if agents or operators need it.
Remote action protocolThe Quater CLI uses it, but it is not a stable third-party protocol yet.Treat it as Quater-owned until the framework stabilizes.
OpenAPI depthCore schemas are generated, but OpenAPI polish is still younger than FastAPI.Check generated docs before publishing a public API.

Why These Limits Exist

Quater is trying to get the core model right first: one backend operation, normal API access, safe agent access, safe operator access, typed binding, explicit auth, resources, tests, and production checks.

Adding every feature too early would make the public surface harder to change before the first stable release.

What Can Go Wrong

WebSocket support is not available : Quater does not expose a public WebSocket API yet. Do not depend on private adapter internals for this.

OpenAPI output does not describe a complex type the way you expected : Check the generated /openapi.json before treating it as a stable public contract.

Also See

Released under the MIT License.