mcp
Model Context Protocol (MCP) server for PrimeUI Libraries
Installation
npx @primeuix/mcpAsk AI about mcp
Powered by Claude Β· Grounded in docs
I know everything about mcp. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
PRIMEUIX
PrimeUIX is a shared package between all Prime libraries, this shared approach allows PrimeTek teams to share theming and the Design team who is responsible for the Figma UI Kit to work on a single design file, which is the single source of truth.
Setup
[!IMPORTANT] This project requires pnpm 9.6.0 or later. Please ensure the correct version is installed before proceeding.
-
Initialize Git Submodules On a fresh clone, submodules must be initialized before running any setup commands:
git submodule update --init --recursive -
Link Dependencies
Run the following command to link dependencies:pnpm run linkIf any issues occur, it may be necessary to manually run the following command for each package inside the
packagesfolder:cd packages/forms && pnpm run dev:link cd packages/themes && pnpm run dev:link ...In some cases, permission issues might require using
sudo. For example:cd packages/themes && sudo pnpm run dev:link ...
[!NOTE] This linking process only needs to be performed once.
-
Setup the Project
Run the following command to bootstrap the workspace:pnpm run setup -
Start Development Server
-
For Angular:
pnpm run ng:dev -
For React:
pnpm run react:dev -
For Vue:
pnpm run vue:dev
Submodules
This project includes PrimeNG, PrimeReact and PrimeVue as submodules. To update these submodules, run the following command:
git submodule update --init --remote --merge
All set! Happy coding! π
