Labsco
LottieFiles logo

Lottie Creator MCP

from LottieFiles

The Lottie Creator MCP brings your AI assistant directly into your animation workflow โ€” giving it full access to LottieFiles Creator so it can build and edit Lottie animations on your behalf through natural language.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedFreeQuick setup

Lottie Creator MCP

undefined

Lottie Creator MCP

The Lottie Creator MCP brings your AI assistant directly into your animation workflow โ€” giving it full access to LottieFiles Creator so it can build and edit Lottie animations on your behalf through natural language. You can check out the installation further down.

MCP servers are part of a standardized interface for AI agents to interact with data sources using the Model Context Protocol. The Lottie Creator MCP connects AI assistants like Claude, Cursor, and Windsurf to the Creator API through a local bridge โ€” meaning your AI gets the same full access to Creator that you do.

With the MCP enabled, you can:

โœฆ Create animations from scratch

Describe what you want โ€” a loading spinner, a progress bar, a character animation โ€” and your AI will build it directly in Creator, layer by layer.

โœฆ Edit and modify existing animations

Change colors, adjust timing, swap easing curves, rename layers, or refactor an entire scene. Your AI reads the current state of your file and edits it in real time.

โœฆ Batch generate animation variants

Automatically produce multiple versions of an animation at once โ€” dark and light themes, different sizes, brand color variations.

โœฆ Analyze animations for accessibility and brand

Ask your AI to inspect animations for contrast issues, motion speed, color consistency, or alignment with your brand guidelines โ€” and fix what it finds.

โœฆ Integrate into your project workflow

Generate animation assets on the fly while working on a broader project.

To use the MCP, install it in your AI client and enable it in LottieFiles Creator. The sections below walk through each step.

Supported MCP Clients

Follow the instructions for your specific client to install and connect the Lottie Creator MCP. Some clients also support skills, which add motion design knowledge so your AI can produce more intentional, polished animations. ๐Ÿ–‡๏ธ Here is the LottieFiles motion design skill.

Follow the steps for your MCP client:

1. Open Claude Desktop Settings

Copy & paste โ€” that's it
Navigate to **Settings โ†’ Developer** and click **"Edit Config"**. This opens a JSON config file on your computer which you can edit in VS Code, Cursor, or any text editor.

 

**2. Add the MCP config**

Paste the following into the config file inside the `mcpServers` object. You may need to add or remove brackets/commas to keep the JSON valid.

```jsx
{
 "mcpServers": {
 "lottiefiles-creator": {
 "command": "npx",
 "args": ["-y", "@lottiefiles/creator-mcp@latest"]
 }
 }
}

Here's what the config file might look like after pasting the config above:

Copy & paste โ€” that's it
{
 "mcpServers": {
 "lottiefiles-creator": {
 "command": "npx",
 "args": ["-y", "@lottiefiles/creator-mcp@latest"]
 }
 },
 "preferences": {
 "quickEntryShortcut": "off",
 "coworkScheduledTasksEnabled": false,
 "ccdScheduledTasksEnabled": false,
 "sidebarMode": "chat",
 "coworkWebSearchEnabled": true,
 "floatingAtollActive": true
 }
}

3. Verify it's connected

Click the "+" button in a chat, navigate to Connectors, and confirm the lottiefiles-creator toggle is on.

Copy & paste โ€” that's it

 
 
 **1. Run the following command in your terminal**

That's it. Claude Code will install and register the MCP automatically.

Copy & paste โ€” that's it
claude mcp add lottiefiles-creator -- npx -y @lottiefiles/creator-mcp@latest
Copy & paste โ€” that's it

 
 
 #### **Using the Lottie Creator MCP for Cursor**
  1. Press Cmd + Shift + P (Mac) or Ctrl + Shift + P (Windows/Linux) โ†’ search "Cursor Settings"

  2. In the sidebar go to Tools & MCPs

  3. Click "Add custom MCP"

  4. Paste in:

Copy & paste โ€” that's it
{
 "mcpServers": {
 "lottiefiles-creator": {
 "command": "npx",
 "args": ["-y", "@lottiefiles/creator-mcp@latest"]
 }
 }
}

Save and fully restart Cursor (quit and reopen - not just reload)

After restart, go to Settings โ†’ Tools & MCP and you should see a green dot next to lottiefiles-creator confirming it's connected.

Copy & paste โ€” that's it

 
 
 **Option A: Deep link install**
  1. Click the LottieFiles MCP server deep link. This will open the MCP configuration in VS Code.
  2. Press the Install button.

Option B: CLI or config file

Or via CLI:

Terminal

Copy & paste โ€” that's it
code --add-mcp '{"name":"lottiefiles-creator","command":"npx","args":["-y","@lottiefiles/creator-mcp@latest"]}'

Or add to your .vscode/mcp.json:

JSON โ€” .vscode/mcp.json

Copy & paste โ€” that's it
{
 "servers": {
 "lottiefiles-creator": {
 "command": "npx",
 "args": ["-y", "@lottiefiles/creator-mcp@latest"]
 }
 }
}

โ„น๏ธ You'll need GitHub Copilot enabled on your account to use MCP tools in VS Code.

Copy & paste โ€” that's it

 
 

amp mcp add lottiefiles-creator -- npx -y @lottiefiles/creator-mcp@latest

Copy & paste โ€” that's it


Follow Antigravity's MCP setup docs and use the config above.


Follow Cline's MCP setup docs and use the config above.


Follow the [configure MCP guide](https://github.com/openai/codex/blob/main/docs/config.md) using:
Copy & paste โ€” that's it
[mcp_servers.lottiefiles-creator]
command = "npx"
args = ["-y", "@lottiefiles/creator-mcp@latest"]

Or add via CLI:

Copy & paste โ€” that's it
codex mcp add lottiefiles-creator -- npx -y @lottiefiles/creator-mcp@latest
Copy & paste โ€” that's it

 
 
 1. Start `copilot`
 2. Run `/mcp add`
 3. Configure:
 - Server name: `lottiefiles-creator`
 - Server type: `Local`
 - Command: `npx -y @lottiefiles/creator-mcp@latest`
 
 
 Follow VS Code MCP setup docs and use the config above. Or via CLI:
Copy & paste โ€” that's it
code --add-mcp '{"name":"lottiefiles-creator","command":"npx","args":["-y","@lottiefiles/creator-mcp@latest"]}'
Copy & paste โ€” that's it

 
 

gh copilot mcp add lottiefiles-creator -- npx -y @lottiefiles/creator-mcp@latest

Copy & paste โ€” that's it

droid mcp add lottiefiles-creator "npx -y @lottiefiles/creator-mcp@latest"

Copy & paste โ€” that's it

gemini mcp add lottiefiles-creator npx -y @lottiefiles/creator-mcp@latest gemini mcp add -s user lottiefiles-creator npx -y @lottiefiles/creator-mcp@latest

Copy & paste โ€” that's it


Follow Gemini Code Assist MCP setup docs and use the config above.


Follow JetBrains MCP setup docs and use the config above.


Follow Kiro MCP setup docs and use the config above.


Follow Qoder MCP setup docs and use the config above.


Add a local MCP server with:
  • Name: lottiefiles-creator
  • Command: npx
  • Arguments: y @lottiefiles/creator-mcp@latest
Copy & paste โ€” that's it

 
 
 Follow Warp MCP setup docs and use the config above.
 
 
 Follow Windsurf MCP setup docs and use the config above.

## Connecting to Lottie Creator

- **Open Lottie Creator** 

 Navigate to [creator.lottiefiles.com](https://creator.lottiefiles.com/) in your browser and keep this tab open throughout your session. The MCP communicates with Creator through this browser tab.

 

- **Enable MCP in Creator** 

 In Creator, go to **Settings โ†’ MCP Settings โ†’ Enable MCP**.

 
 

- **Confirm the connection** 

 You should see a notification in Creator: Local MCP bridge connected

 
 If you see this, you're all set and ready to start prompting! Keep in mind, the animation quality heavily depends on which model you are using, so be sure to use the best model available to you.

## About Skills

Skills provide guidance for how an agent should approach animation tasks โ€” using a combination of MCP tool calls and deep motion design knowledge baked in as reusable instructions.

 While the Lottie Creator MCP exposes individual tools (create a layer, set a keyframe, adjust a fill), Skills help your AI understand how to use them well . Things like knowing which easing curve fits a bounce vs. a fade, how to sequence a multi-element entrance, or how to structure timing so an animation feels intentional rather than mechanical.

 Skills don't replace the MCP connection or add new tools. They reduce guesswork by packaging motion design expertise into instructions your AI draws on automatically whenever it works on animations.

### Install the motion design skill

 Run this command once in your terminal. It works with 40+ agents including Claude Code, Cursor, Codex, and GitHub Copilot.

 Terminal

npx skills add LottieFiles/motion-design-skill

Copy & paste โ€” that's it

 โœจ **Highly recommended.** The difference between an AI that produces stiff, mechanical animations and one that produces polished, intentional motion is almost entirely down to whether it has this context. Install it once and it applies to every animation session.

 View the full skill on GitHub โ†’ [LottieFiles/motion-design-skill](https://github.com/LottieFiles/motion-design-skill)

## Capabilities

The MCP gives your AI full access to the Creator API. Here's everything it can do:

 **๐ŸŽฌ Scene Management**

 

- Create scenes โ€” set name, size, framerate, duration 

- Switch between scenes 

- Set background color (preview only, not exported) 

- Read scene properties โ€” layers, size, framerate 

- Export scenes to Lottie JSON 

- Import Lottie JSON, dotLottie, SVG, or images 

 **๐Ÿ—‚ Layer Management**

 

- Set visibility, lock state, and focus 

- Control timing โ€” start frame, end frame, offset 

- Set blend modes (16 modes including multiply, screen, overlay) 

- Apply and animate masks and mattes 

- Align and flip layers 

- Animate transforms โ€” position, rotation, scale, skew 

 **๐Ÿ”ท Shape Creation**

 

- Rectangle โ€” position, size, corner roundness 

- Ellipse โ€” position, size 

- Polygon โ€” points, radius, roundness 

- Star โ€” inner/outer radius, points 

- Path โ€” custom bezier with full tangent control 

- Group โ€” group existing shapes together 

 **๐ŸŽจ Fills & Strokes**

 

- Solid color fill โ€” static or animated RGB 

- Linear gradient fill โ€” custom start/end points 

- Radial gradient fill โ€” highlight angle and length 

- Solid and gradient strokes โ€” with animatable width 

- Trim paths โ€” animate drawing (start %, end %, offset) 

 **โฑ๏ธ Animation & Keyframes**

 

- Add keyframes at specific frames with values 

- Set static values (no animation) 

- Read, inspect, and remove keyframes 

- Set easing โ€” Linear or Cubic Bezier (x1, y1, x2, y2) 

- Animate: position, rotation, scale, opacity, color, path, and more 

 **๐Ÿ–ผ Asset & Playback**

 

- List, clone, and remove assets (scenes and images) 

- Read image properties โ€” width, height, base64 URI 

- Play, pause, and jump to specific frames 

- Read current frame and playback state 

- Read selected nodes and keyframes 

 Coming soon: State Machines and Motion Tokens

## Best practices

- **Install the motion design skill for better quality:** The MCP gives your AI the tools. The motion design skill gives it the judgment to use them well โ€” easing curves, timing principles, choreography. One command, significantly better output. Motion design skill can be found [here](https://lottie.link/motion-design-skill). 

- **Start with your own SVGs, then animate:** AI can be unpredictable when generating illustration shapes from scratch. For the best results, import your existing SVG assets into Creator first, then ask your AI to animate them. This keeps your visual style consistent and lets the AI focus on what it does best โ€” motion, timing, and sequencing.
 

- Test out these remix links
 

- Medal: [https://lottie.link/metal](https://lottie.link/metal) 

- Weather: [https://lottie.link/weather](https://lottie.link/weather) 

- Graph: [https://lottie.link/graph](https://lottie.link/graph) 

- Mail box: [https://lottie.link/mailbox1](https://lottie.link/mailbox1) 

 

 

- **Always use the best model available to you:** Animation quality scales directly with the model. If you have access to Claude Sonnet or Opus, use it over a smaller model โ€” the difference in how it handles timing, sequencing, and spatial reasoning is noticeable. 

- **Name your layers before you prompt:** The AI reads your layer names to understand your animation's structure. Well-named layers like `left_arm`, `right_leg`, `bg_circle`, and `text_headline` help it target the right elements, avoid mistakes, and stay organized across complex scenes. Generic names like `Shape 1` or `Group 4` make it harder for the AI to build on your work accurately. 

- **Break complex animations into steps:** Instead of "build me a full onboarding animation," go scene by scene. Create the scene โ†’ add shapes โ†’ add keyframes โ†’ refine timing. Smaller steps give you more control and make errors easier to catch and correct. 

- **Be specific about timing and feel:** "A smooth fade" is vague. "A 400ms fade-in with ease-out" gives your AI something to work with. The more you describe the feel โ€” snappy, bouncy, slow and cinematic โ€” the closer the first result will be to what you're imagining.