Skip to main content
Lovable, v0, Bolt and Replit Agent don’t yet support the Model Context Protocol. Until they do, paste the system-prompt block below into the System Prompt / Project Instructions / Knowledge section of the tool. It teaches the model the same conventions our MCP server enforces. When the upstream tool ships MCP support, you’ll be able to drop this prompt and use @neuraldraft/mcp directly. Same conventions, less copy-paste.
Replace the placeholders ({PROJECT_ID}, {API_KEY}, brand fields) before pasting. In Lovable, you can paste the prompt verbatim and reference your brand context separately via the Knowledge panel — pick whichever your tool supports.

Copy this

Why this works

The model’s job becomes mechanical: every text node gets a data-translate attribute, every image a data-image-key, every fetch routes to a real URL. On the Neural Draft side, the first time a key is seen we auto-create it as empty; the customer fills it in via the admin. No schema work, no migrations, no glue. If your tool also supports a “knowledge” or “files” section, paste the OpenAPI URL — https://api.neuraldraft.io/v1/openapi.yaml — and the model will ground its API calls in the spec.

Hosted-tool checklist

For the three native MCP clients (Cursor / Claude Code / Continue), use the MCP setup guide instead — it gives the AI tool access to the real tools (register_component, generate_blog_post, generate_image, etc.), not just rules.

Working example — Lovable system prompt + SDK glue

If your Lovable project has a “Server functions” / Node runtime, drop this snippet into a server file. Once Lovable adds MCP, the same code keeps working.
Example prompt to paste into Lovable’s project chat:
“Build a marketing home page using the Neural Draft conventions in my system prompt. Hero, three-feature grid, CTA, footer. Every text node needs data-translate="<key>". Every image needs data-image-key="<key>". Use loadHomepageMeta() from lib/neural-draft.ts for <title> and meta tags. Default copy in the brand voice listed in my system prompt.”