On this page

Cookbook

Practical walkthroughs for the things customers actually build on MIOSA. Each recipe starts with a product goal, then shows the sandbox, preview, deployment, domain, token, and attribution pieces involved.


Agent and app building


Multi-tenant and SaaS


Embedding and real-time


Resilience and safety


Before you start

All recipes share the same prerequisites:

  • A MIOSA workspace API key (msk_live_*) - see API Keys
  • Node 22+ or Python 3.11+ installed locally
  • The MIOSA SDK installed for your language:
# Python
pip install miosa

# TypeScript / Node
npm install @miosa/sdk

Set the key in your environment once - every recipe reads it from there:

export MIOSA_API_KEY="msk_live_..."

Was this helpful?