mojojojo
Hosted JSON records with optional semantic search. No database process to provision and no idle instance to pay for.
Your mojojojo identity owns the records, API keys, vector link, and usage. The service stores nothing in a browser-only tenant or a separate vendor account.
Records and ownership persist independently from app deployments.
Link search text to a managed vector project when you need semantic retrieval.
Shared databases have no per-customer process to keep running.
from mojojojo import Client
client = Client()
database = client.create_database("Product data")
client.data_upsert(database["id"], "customer:123", {
"name": "Ada", "plan": "starter"
}, search_text="Ada is interested in Mojo hosting")
records = client.data_records(database["id"])
Record values are valid JSON up to 64 KiB. The shared tier includes 10 databases,
10,000 records and 100 MiB per database;
the API is tenant-scoped by session or MOJOJOJO_API_KEY.