The eight apps — Website, Email, Forms, Knowledge Base, CRM, Chat, Developers, and Socials — are not eight products bolted together. They read and write the same Postgres dataset. What a form captures is available in the CRM. What the AI learns in chat is available when it writes an email. Nothing gets copied between tools, and nothing falls out of sync.
The whole thing is a polyglot monorepo: TypeScript for the API, web app, website frontend, and the AI service; Python for content and file processing. Fastify with TypeBox schemas generates the OpenAPI spec; the frontend is React with TanStack Query and Router. It all runs on Google Cloud — Cloud Run for compute, Cloud SQL running PostgreSQL with pgvector for embedding search, Cloud Storage for files.
Integrated apps
Tools the AI can call
Content blocks
Field types
Content generation runs on Google's Gemini family today — writing, embeddings, and image generation — with the model chosen per job. A cheap model classifies; a stronger one generates; a vision model checks the rendered page. Every call routes through a provider-agnostic layer that can adopt other models by config as they become viable, so the platform isn't welded to one model.
You talk to it in the LLM client you already use. Giant Context is MCP-native from day one — the AI receives instructions through Claude or Cursor, not a dashboard you have to log into. There's a web console if you want one, but most days you won't touch it. Machine access is through API keys, scoped per organization and revocable at any time.
How the generation pipeline actually grounds a draft — facts versus context, the quality gates, the vision check — has its own page.
Your data is yours. It lives in your project on Google Cloud, in US regions today, with encryption in transit and at rest. It does not train any public model, and it does not leak into another customer's context. You can export everything, in bulk, at any time. If you leave, you take it.
And the honest part: this is early alpha, built by one person. There's no SOC 2 yet, no SSO on the base plan, and no formal SLA — all on the roadmap, none shipped. EU data residency is an enterprise option that isn't built. If you need those today, this isn't your tool today, and we'd rather say so than pretend.
Early access grants sandbox access to the whole platform. Upload your business docs first — the AI grounds everything it produces in what you give it — and start asking. If you want to read the code-level detail before you sign up, ask in chat.