···11+---
22+title: AI Usage
33+description: How to use AI to enhance building with Hip UI.
44+---
55+66+import { MCPInstallationGuide } from "../lib/MCPInstallationGuide";
77+88+Hip UI interfaces with AI in two main ways:
99+1010+1. **llms.txt/per page markdown** - The docs as static markdown files that can be used as context for AI chats like OpenAi or Claude.
1111+2. **MCP server** - A MCP server that AI can use to get guidance on how to use Hip UI.
1212+1313+## MCP Server
1414+1515+The MCP server exposes the following tools:
1616+1717+- **list-sections** - Lists all available Hip UI docs sections.
1818+- **get-documentation** - Retrieves the full markdown documentation for a given section.
1919+2020+It also exposes some lightweight instructions and rules around using and composing components.
2121+2222+### Setup
2323+2424+To use the MCP server you need to add it to your AI tool of choice.
2525+2626+#### Cursor
2727+2828+```json
2929+{
3030+ "mcpServers": {
3131+ "hip-ui": {
3232+ "command": "npx",
3333+ "args": ["hip-ui", "mcp"]
3434+ }
3535+ }
3636+}
3737+```
3838+3939+#### VS Code
4040+4141+```bash
4242+code --add-mcp '{"name":"hip-ui","command":"npx","args":["hip-ui", "mcp"]}'
4343+```
4444+4545+#### Claude Code
4646+4747+```bash
4848+claude mcp add hip-ui npx hip-ui mcp
4949+```
5050+5151+#### Codex
5252+5353+```yaml
5454+[mcp_servers.hip-ui]
5555+command = "npx"
5656+args = ["hip-ui", "mcp"]
5757+```
5858+5959+#### Gemini CLI
6060+6161+```bash
6262+gemini mcp add hip-ui npx hip-ui mcp
6363+```
+4-4
apps/docs/src/docs/showcase/music.mdx
···11---
22-title: Music App
33-description: An example showing what building a music app looks like with Hip.
22+title: Music Cards
33+description: A collection of music-related cards built with Hip components.
44---
5566-import { Music } from "../../showcases/music";
66+import { MusicCards } from "../../showcases/music";
7788-<Music />
88+<MusicCards />
+8
apps/docs/src/docs/showcase/spotify.mdx
···11+---
22+title: Spotify App
33+description: A Spotify-style streaming app showcase built with Hip components.
44+---
55+66+import { SpotifyApp } from "../../showcases/spotify";
77+88+<SpotifyApp />