MCP Setup

Configuration for Claude Desktop, Claude Code, Cursor, and VS Code — copy the JSON, restart your editor, done.

Claude Desktop

Add to your claude_desktop_config.json:

Claude Desktop Configuration

{
  "mcpServers": {
    "animatic": {
      "command": "npx",
      "args": ["-y", "animatic-mcp"]
    }
  }
}

Config file location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Restart Claude Desktop after saving.

Claude Code

Run this command in your terminal:

Claude Code

claude mcp add animatic -- npx -y animatic-mcp

The server will be available in your next Claude Code session.

Cursor

Add to your Cursor MCP settings (.cursor/mcp.json):

Cursor Configuration

{
  "mcpServers": {
    "animatic": {
      "command": "npx",
      "args": ["-y", "animatic-mcp"]
    }
  }
}

VS Code

Add to your VS Code settings (.vscode/mcp.json):

VS Code Configuration

{
  "servers": {
    "animatic": {
      "command": "npx",
      "args": ["-y", "animatic-mcp"]
    }
  }
}

Other clients

Any MCP-compatible client can connect to Animatic. The server runs as a stdio transport:

Generic Setup

npx -y animatic-mcp

Consult your client's documentation for how to add MCP servers via stdio transport.

Was this page helpful?