Overview

Tools and resources for building HeroUI Native projects with AI coding assistants

HeroUI Native provides three tools to help AI assistants build better mobile UIs with heroui-native-pro. Use them together for the best results.

Quick Setup

Get your HEROUI_PERSONAL_TOKEN from the Pro dashboard, then:

1. MCP Server

Gives your agent live access to component docs, theme variables, and guides at runtime. Add to your editor's MCP config:

{
  "mcpServers": {
    "heroui-native-pro": {
      "url": "https://native-mcp.heroui.pro/mcp",
      "headers": {
        "x-heroui-personal-token": "HEROUI_PERSONAL_TOKEN"
      }
    }
  }
}

Full MCP setup guide

2. Native Skill

Teaches your agent heroui-native-pro conventions, compound patterns, and React Native best practices.

curl -fsSL https://heroui.pro/docs/install | HEROUI_PERSONAL_TOKEN=your_token bash -s -- heroui-native-pro

Full skills guide

3. Design Taste Skill

Helps your agent better use the HeroUI design system and produce polished mobile UIs.

curl -fsSL https://heroui.pro/docs/install | HEROUI_PERSONAL_TOKEN=your_token bash -s -- heroui-native-pro-design-taste

Full design taste guide

What Each Tool Does

MCP ServerNative Pro SkillDesign Taste Skill
PurposeLive access to docs, themes, and component APIsTeaches component patterns and Native conventionsTeaches design system principles and visual polish
How it worksRemote tools your agent calls at runtimeStatic instructions loaded into agent contextStatic instructions loaded into agent context
InstallAdd URL to editor MCP configOne-line curl installOne-line curl install
OfflineNo (requires network)YesYes
Best for"Look up the Button API""Build a screen with HeroUI Native cards""Make this look production-quality"

Skills teach, MCP does. Skills give your agent knowledge of patterns and conventions. The MCP server gives it live access to component documentation and theme variables.

For best results, install all three:

  1. MCP Server — your agent can look up any component API, browse theme variables, and read guides in real time
  2. Native Pro Skill — your agent knows heroui-native-pro conventions, compound patterns, and common mistakes without needing to look them up
  3. Design Taste Skill — your agent produces polished, well-designed mobile UIs instead of generic layouts

Using with HeroUI Native OSS

The tools above cover heroui-native-pro components. For heroui-native base components, use the separate HeroUI Native OSS docs and tools. Both work side by side.

On this page