For Developers
API-first, MCP-enabled, and component-based. Customize your delivery stack with Next.js, Astro, Remix, and more.
- Blueprints to get started in minutes
- GraphQL, JSON:API, typed client
- 25+ MCP tools, MCP-native from day one
1import Head from "next/head"2import { getSpace } from "@decoupled/client"3 4export default async function Home() {5 const space = await getSpace("my-site")6 const page = await space.getContent("home")7 return <Render data={page.data} />8}

