The design decision worth knowing is that every artifact is a git repository, so an agent fixes a broken header by cloning, committing and pushing — the same loop as any other project, rather than re-prompting and hoping. Publishing is separate from sharing: the artifact URL is already viewable, so you only publish when you want it public.
A hosted MCP endpoint into Agent Grid, Anima's hub for agent-built web apps. Every app is an artifact: one real git repository in your team's workspace addressed by a `sessionId`, with a live URL. The repository you connect to holds the setup guide and the skill that teaches an agent how to drive it.
- An app built from a prompt, from a cloned website URL, or from Figma frames — returned as a running app at a live URL
- Hosting for code you already have: import a project or start an empty repo and push to it
- Editing over git — clone the artifact's repository, commit, push; content changes always go through git rather than a proprietary edit call
- Publishing to a public URL, and taking it down again
- Design-aware code generated into your own codebase, matched to your stack, with the returned design snapshots as visual reference
- Parallel variants when you ask for them, so several versions can be compared
An Agent Grid account and an MCP-capable tool that speaks streamable HTTP. Nothing to install: add `https://api.agentgrid.io/v1/mcp` as an HTTP server and authenticate in the browser — `claude mcp add --transport http anima https://api.agentgrid.io/v1/mcp` for Claude Code, `codex mcp add anima --url https://api.agentgrid.io/v1/mcp` for Codex, or a `url` entry for Cursor and VS Code. Connect Figma during authentication if you want the Figma flows. The Claude Code plugin route configures the server and the skill in two commands. If you would rather not run MCP at all, `npx @animaapp/cli@latest` runs the same tools from a shell. Design system access is an Enterprise feature set up with Anima's team.
One command — claude mcp add --transport http anima https://api.agentgrid.io/v1/mcp
