AI assistant

Let an assistant build it

Connect Claude, ChatGPT or Grok to landee and ask for the page in words. There is no one-click install — you copy one address into your assistant's settings, and that is the whole setup.

MCP server address
https://landee.app/api/mcp
Claude Code
claude mcp add --transport http landee https://landee.app/api/mcp
Nothing goes public on its ownEvery change lands in the draft. Publishing and rolling back each need your explicit confirmation.
What the assistant seesYour landees only — never anyone else's.
  • list_landeesYour landees: address, publication status, page count.
  • get_landeeOne landee in detail: pages, block counts, profile block.
  • list_blocksBlocks of a page with their content — draft or published.
  • get_landee_themeSite theme: colours, font, background, block shape.
  • get_landee_analyticsViews, visits, unique visitors and clicks over a period.
  • get_landee_top_clicksWhich blocks and links were clicked most.
and 10 more
What the assistant can changeEvery change lands in the draft. It goes public only when published.
  • import_landeeCreates a new landee from someone else's page. Leaves existing ones alone.
  • mark_form_submission_readClears the “new” mark on a response, or puts it back.
  • mark_all_form_submissions_readClears the “new” mark from every response at once.
  • create_blockAdds a block to a page.
  • update_blockChanges a block's content — partially, leaving other fields alone.
  • rename_blockRenames a block in the editor.
and 29 more

What the assistant can build

Ask in words and it builds it. Markup, custom grids, icons, fonts, hover, animation. Colours come from your theme by default — name your own and it uses those.

CSS

A card that tilts

Follows the cursor — with no script at all.

And an accordion too

details + summary, exactly as the browser has it.

WorksChecked by the very code that cleans blocks on your site.
  • Hover and animationtransform: rotateY(9deg);
  • Your own icons<svg viewBox="0 0 24 24"><path d="M4 12h16"/></svg>
  • Your own fontfont-family: Georgia, serif;
  • Tabs without scriptdisplay: block;
  • Your own grid and tablesdisplay: grid; grid-template-columns: 1fr 1fr;
  • Theme colours by defaultbackground: linear-gradient(var(--lnd-accent), transparent);
  • Your own coloursbackground: #7c3aed;
Will not passRemoved silently — the page stays intact.
  • Covering the pageposition: fixed; inset: 0;
  • Calls to other serversbackground: url(https://x.com/p.gif);
  • Any script<script>fetch(...)</script>
What the assistant sees, and about safety