Cursor setup

Connect Cursor to Variant over MCP

Cursor can connect to Variant's hosted MCP server over HTTP. Once connected, the agent can read decks, apply targeted slide edits, render previews, and export finished presentations.

Use https://mcp.variant.art/mcp with HTTP transport. Start with OAuth for normal desktop use, or add a scoped bearer token for controlled headless workflows.

#Config

Add Variant as an HTTP MCP server in Cursor's MCP configuration. Restart Cursor after changing the config so the server and tools are loaded.

Cursor MCP config
{
  "mcpServers": {
    "variant": {
      "transport": "http",
      "url": "https://mcp.variant.art/mcp"
    }
  }
}

#Bearer token option

If your Cursor environment cannot complete OAuth, generate a scoped token in Variant and pass it as an Authorization header.

Token config
{
  "mcpServers": {
    "variant": {
      "transport": "http",
      "url": "https://mcp.variant.art/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_VARIANT_MCP_TOKEN"
      }
    }
  }
}

#First test

Use a read-only prompt before letting the agent write to a deck. That confirms the endpoint, auth, and preview path are healthy.

Prompt
List my Variant decks, list the slides in the most recently updated deck,
and render a preview of slide 1. Do not edit the deck.

#What Cursor can do with Variant

The useful loop is inspect, patch, preview. Cursor can read slide HTML, change one element with slide.edit, and render a preview before continuing. That is much safer than asking an agent to regenerate a whole deck for a small copy or layout fix.

  • Create or duplicate decks
  • Read slide source and metadata
  • Apply targeted edits
  • Batch-create or replace slides
  • Preview slides as images
  • Read brand context
  • Export decks

#Common questions

Can Cursor use Variant MCP?

Yes. Cursor can connect to Variant MCP if its MCP configuration supports remote HTTP servers.

What URL should I use in Cursor?

Use https://mcp.variant.art/mcp with HTTP transport.

Can Cursor edit an existing Variant deck?

Yes, with write access. It can read slides, make targeted edits, preview changes, and export the final deck.