···33description: How to use AI to enhance building with Hip UI.
44---
5566-import { MCPInstallationGuide } from "../lib/MCPInstallationGuide";
77-86Hip UI interfaces with AI in two main ways:
971081. **llms.txt/per page markdown** - The docs as static markdown files that can be used as context for AI chats like OpenAi or Claude.
+7-8
apps/docs/src/docs/introduction.mdx
···2424To get started with hip you can either install all the components at once:
25252626```bash
2727-pnpx hip-ui install --all
2727+pnpm dlx hip-ui install --all
2828```
29293030-Or intall components one at a time as you need them:
3030+Or add a few core building blocks one by one.
3131+In this situation it makes sense to install hip-ui as a dev dependency so as you install components they come from the same version of the library.
31323233```bash
3333-pnpx hip-ui install button
3434-pnpx hip-ui install typography
3535-pnpx hip-ui install flex
3636-pnpx hip-ui install content
3737-pnpx hip-ui install copy-to-clipboard-button
3838-pnpx hip-ui install tooltip
3434+pnpm dlx hip-ui install theme
3535+pnpm dlx hip-ui install flex
3636+pnpm dlx hip-ui install typography
3737+pnpm dlx hip-ui install button
3938```
40394140## Navigating the docs
+5-21
packages/hip-ui/README.md
···27272828## Quick Start
29293030-Run the CLI without permanently installing it:
3131-3232-```bash
3333-pnpm dlx hip-ui install button
3434-```
3535-3636-You can also use other package managers:
3737-3838-```bash
3939-npx hip-ui install button
4040-yarn dlx hip-ui install button
4141-```
4242-4330To install everything at once:
44314532```bash
4633pnpm dlx hip-ui install --all
4734```
48354949-To add a few core building blocks one by one:
3636+Or add a few core building blocks one by one.
3737+In this situation it makes sense to install hip-ui as a dev dependency so as you install components they come from the same version of the library.
50385139```bash
5240pnpm dlx hip-ui install theme
···5543pnpm dlx hip-ui install button
5644```
57455858-## Optional Local Install
4646+## MCP Server
59476060-If you want to keep using the CLI in the same project, add it as a dev dependency:
6161-6262-```bash
6363-pnpm add -D hip-ui
6464-pnpm exec hip-ui install button
6565-```
4848+To get the most out of using Hip UI in your editor [install the MCP server](https://hip-ui.tngl.io/docs/ai).
4949+If you plan to use the MCP server it makes sense to install hip-ui as a dev dependency so the docs provided by it match your installed components.
66506751## Configuration
6852