Ship a client, app, or site with backend on agentstack.tech — use the hosted dashboard, @agentstack/sdk, and/or MCP (agentstack.execute).
- Account at agentstack.tech
- A project (dashboard or API)
- API key or OAuth token — auth/README.md
- Node 18+ for TypeScript:
npm install @agentstack/sdk
| Plane | Best for | Entry |
|---|---|---|
| Dashboard only | Operators, no custom code | USER_FEATURES_GUIDE.md |
| SDK app | React, Next, mobile, game client | This doc + sdk/RECIPES.md |
| MCP agent | Cursor, Claude, automation | MCP_QUICKSTART.md |
| Hybrid | Custom UI + agent tooling | SDK + plugins/CONTEXT_FOR_AI_MCP.md |
flowchart LR
Users[Your users]
App[Your app or site]
AS[agentstack.tech]
Users --> App
App -->|REST MCP SDK| AS
| # | Scenario | Tutorial |
|---|---|---|
| 1 | Static / SPA hosting | tutorials/01_hosting_static_site.md |
| 2 | SaaS data (8DNA) | tutorials/02_saas_dna_crud.md |
| 3 | Chat app | tutorials/03_messenger_app.md |
| 4 | AI + RAG + agent | tutorials/04_ai_rag_agent.md |
| 5 | Support desk | tutorials/05_support_channel.md |
| 6 | Integrations / Zapier-class | tutorials/06_integrations_recipes.md |
| 7 | Shop / buffs | tutorials/07_commerce_shop.md |
| 8 | Autonomous agent loop | tutorials/08_robot_mcp_loop.md |
import { AgentStackSDK, resolveAgentStackApiBase } from '@agentstack/sdk';
export const sdk = new AgentStackSDK({
apiBase: resolveAgentStackApiBase(),
});
await sdk.platform.auth.login({
email: process.env.AGENTSTACK_EMAIL!,
password: process.env.AGENTSTACK_PASSWORD!,
});Prefer sdk.protocol for DNA commands and snapshot cache — sdk/AGENT_PROTOCOL_QUICKSTART.md.
For map-first Cursor rules and starter genes in your repo (not copied from this mirror):
npx @agentstack/genetic-ai-starter init --profile standard --project-name "My SaaS" --domain appSee genetic-ai-starter.
- Subscription gates: subscription/SUBSCRIPTION_TIERS.md
- Rate limits: operations-public/RATE_LIMITS_AND_ERRORS.md
- Hosting bytes count toward project storage quota — hosting/HOSTING_QUICKSTART.md
Next: JOURNEY_MAP.md · PARITY_MATRIX.md · WHATS_NEW.md