@primevue/mcp 5.0.0-rc.3 → 5.0.0-rc.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -7,7 +7,7 @@ Requires Node.js 22 or newer. Published runtime data is self-contained: normaliz
7
7
  ## Run
8
8
 
9
9
  ```bash
10
- npx -y @primevue/mcp@rc
10
+ npx -y @primevue/mcp
11
11
  ```
12
12
 
13
13
  The public bin command is also available as:
@@ -21,13 +21,13 @@ primevue-mcp
21
21
  ### Claude Code
22
22
 
23
23
  ```bash
24
- claude mcp add primevue -s user -- npx -y @primevue/mcp@rc
24
+ claude mcp add primevue -s user -- npx -y @primevue/mcp
25
25
  ```
26
26
 
27
27
  Project-local configuration:
28
28
 
29
29
  ```bash
30
- claude mcp add primevue -- npx -y @primevue/mcp@rc
30
+ claude mcp add primevue -- npx -y @primevue/mcp
31
31
  ```
32
32
 
33
33
  ### Cursor
@@ -39,7 +39,7 @@ Create `.cursor/mcp.json` in your project or edit `~/.cursor/mcp.json`:
39
39
  "mcpServers": {
40
40
  "primevue": {
41
41
  "command": "npx",
42
- "args": ["-y", "@primevue/mcp@rc"]
42
+ "args": ["-y", "@primevue/mcp"]
43
43
  }
44
44
  }
45
45
  }
@@ -54,7 +54,7 @@ Create `.vscode/mcp.json` in your project:
54
54
  "servers": {
55
55
  "primevue": {
56
56
  "command": "npx",
57
- "args": ["-y", "@primevue/mcp@rc"]
57
+ "args": ["-y", "@primevue/mcp"]
58
58
  }
59
59
  }
60
60
  }
@@ -65,7 +65,7 @@ For user-level setup, place the same `servers` object in your VS Code user MCP c
65
65
  ### Codex
66
66
 
67
67
  ```bash
68
- codex mcp add primevue -- npx -y @primevue/mcp@rc
68
+ codex mcp add primevue -- npx -y @primevue/mcp
69
69
  ```
70
70
 
71
71
  Or edit `~/.codex/config.toml`:
@@ -73,7 +73,7 @@ Or edit `~/.codex/config.toml`:
73
73
  ```toml
74
74
  [mcp_servers.primevue]
75
75
  command = "npx"
76
- args = ["-y", "@primevue/mcp@rc"]
76
+ args = ["-y", "@primevue/mcp"]
77
77
  ```
78
78
 
79
79
  ## MCP Surface
@@ -106,7 +106,7 @@ Workflow prompts:
106
106
 
107
107
  ## Data and Release Assumption
108
108
 
109
- `@primevue/mcp` does not vendor the shared core. Its RC dependency on `@primeuix/mcp` is pinned exactly to `2.0.0-rc.1`; keep the dependency exact throughout the RC cycle so installed behavior remains reproducible.
109
+ `@primevue/mcp` does not vendor the shared core. Its RC dependency on `@primeuix/mcp` is pinned exactly to `2.0.0-rc.2`; keep the dependency exact throughout the RC cycle so installed behavior remains reproducible.
110
110
 
111
111
  The bundled package docs are copied from the generated public `/llms` Markdown files during `build:prebuild`. The public `/llms` files remain the canonical web compatibility surface.
112
112
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": "1.0.0",
3
- "generatedAt": "2026-07-14",
3
+ "generatedAt": "2026-07-15",
4
4
  "components": [
5
5
  {
6
6
  "name": "accordion",
@@ -46515,7 +46515,7 @@
46515
46515
  {
46516
46516
  "id": "introduction",
46517
46517
  "label": "Introduction",
46518
- "description": "Model Context Protocol (MCP) lets AI assistants call external tools. The @primevue/mcp@5.0.0 package uses those tools to search and read the PrimeVue documentation included with the package. Find components, guides, examples, and setup instructions. Read component APIs and documentation sections. Check component usage against documented properties and events. Return links to the related PrimeVue documentation when available. The server requires Node.js 22 or newer. It is read-only and does not change your project files or PrimeVue configuration.",
46518
+ "description": "Model Context Protocol (MCP) lets AI assistants call external tools. The @primevue/mcp package uses those tools to search and read the PrimeVue documentation included with the package. Find components, guides, examples, and setup instructions. Read component APIs and documentation sections. Check component usage against documented properties and events. Return links to the related PrimeVue documentation when available. The server requires Node.js 22 or newer. It is read-only and does not change your project files or PrimeVue configuration.",
46519
46519
  "examples": null
46520
46520
  },
46521
46521
  {
@@ -46523,7 +46523,7 @@
46523
46523
  "label": "CLI Setup",
46524
46524
  "description": "The recommended setup is the PrimeVue Plugin . It installs this MCP server together with the PrimeVue skills that guide common implementation, setup, theming, migration, and troubleshooting tasks.",
46525
46525
  "examples": {
46526
- "basic": "pnpm dlx @primeui/cli@1.0.0 plugin install --tool copilot --library primevue\npnpm dlx @primeui/cli@1.0.0 doctor --tool copilot --library primevue"
46526
+ "basic": "pnpm dlx @primeui/cli plugin install --tool copilot --library primevue\npnpm dlx @primeui/cli doctor --tool copilot --library primevue"
46527
46527
  }
46528
46528
  },
46529
46529
  {
@@ -46531,7 +46531,7 @@
46531
46531
  "label": "Claude Code",
46532
46532
  "description": "Add the MCP server to your user configuration to use it in every project, or omit -s user to add it only to the current project. Start a new Claude Code session after registration.",
46533
46533
  "examples": {
46534
- "basic": "# Add to user config (available in all projects)\nclaude mcp add primevue -s user -- npx -y @primevue/mcp@5.0.0\n\n# Or add to current project only\nclaude mcp add primevue -- npx -y @primevue/mcp@5.0.0"
46534
+ "basic": "# Add to user config (available in all projects)\nclaude mcp add primevue -s user -- npx -y @primevue/mcp\n\n# Or add to current project only\nclaude mcp add primevue -- npx -y @primevue/mcp"
46535
46535
  }
46536
46536
  },
46537
46537
  {
@@ -46539,7 +46539,7 @@
46539
46539
  "label": "VS Code",
46540
46540
  "description": "Create .vscode/mcp.json for project-level setup. To use the server across projects, add the same servers entry to your VS Code user MCP configuration.",
46541
46541
  "examples": {
46542
- "basic": "{\n \"servers\": {\n \"primevue\": {\n \"command\": \"npx\",\n \"args\": [\"-y\", \"@primevue/mcp@5.0.0\"]\n }\n }\n}"
46542
+ "basic": "{\n \"servers\": {\n \"primevue\": {\n \"command\": \"npx\",\n \"args\": [\"-y\", \"@primevue/mcp\"]\n }\n }\n}"
46543
46543
  }
46544
46544
  },
46545
46545
  {
@@ -46547,7 +46547,7 @@
46547
46547
  "label": "OpenAI Codex",
46548
46548
  "description": "Add the MCP server with the Codex CLI, or add the same configuration to ~/.codex/config.toml .",
46549
46549
  "examples": {
46550
- "basic": "# Using the CLI\ncodex mcp add primevue -- npx -y @primevue/mcp@5.0.0\n\n# Or edit ~/.codex/config.toml\n[mcp_servers.primevue]\ncommand = \"npx\"\nargs = [\"-y\", \"@primevue/mcp@5.0.0\"]"
46550
+ "basic": "# Using the CLI\ncodex mcp add primevue -- npx -y @primevue/mcp\n\n# Or edit ~/.codex/config.toml\n[mcp_servers.primevue]\ncommand = \"npx\"\nargs = [\"-y\", \"@primevue/mcp\"]"
46551
46551
  }
46552
46552
  },
46553
46553
  {
@@ -46555,7 +46555,7 @@
46555
46555
  "label": "Cursor",
46556
46556
  "description": "Create .cursor/mcp.json in your project or ~/.cursor/mcp.json for global configuration.",
46557
46557
  "examples": {
46558
- "basic": "{\n \"mcpServers\": {\n \"primevue\": {\n \"command\": \"npx\",\n \"args\": [\"-y\", \"@primevue/mcp@5.0.0\"]\n }\n }\n}"
46558
+ "basic": "{\n \"mcpServers\": {\n \"primevue\": {\n \"command\": \"npx\",\n \"args\": [\"-y\", \"@primevue/mcp\"]\n }\n }\n}"
46559
46559
  }
46560
46560
  },
46561
46561
  {
@@ -46809,19 +46809,19 @@
46809
46809
  {
46810
46810
  "id": "introduction",
46811
46811
  "label": "Introduction",
46812
- "description": "The PrimeVue Plugin adds PrimeVue skills and the PrimeVue MCP server to Claude Code, Codex, GitHub Copilot, Cursor, or Gemini CLI. Plugins installed through GitHub Copilot CLI are also available in VS Code. Install the plugin when you want the assistant to follow PrimeVue-specific workflows as well as read the current component documentation. The plugin is published from the primefaces/primeui-plugins repository. Use @primeui/cli@1.0.0 for the same installation flow across supported assistants, or follow the manual setup for your client.",
46812
+ "description": "The PrimeVue Plugin adds PrimeVue skills and the PrimeVue MCP server to Claude Code, Codex, GitHub Copilot, Cursor, or Gemini CLI. Plugins installed through GitHub Copilot CLI are also available in VS Code. Install the plugin when you want the assistant to follow PrimeVue-specific workflows as well as read the current component documentation. The plugin is published from the primefaces/primeui-plugins repository. Use @primeui/cli for the same installation flow across supported assistants, or follow the manual setup for your client.",
46813
46813
  "examples": null
46814
46814
  },
46815
46815
  {
46816
46816
  "id": "contents",
46817
46817
  "label": "What It Installs",
46818
- "description": "Installing the PrimeVue Plugin adds: Seven skills for PrimeVue implementation, setup, theming, accessibility, migration, and troubleshooting. The PrimeVue MCP server, configured with @primevue/mcp@5.0.0 . The manifest required by the selected assistant. PrimeNG and PrimeReact are separate plugins. Installing this plugin does not change your application or install PrimeVue dependencies in the project.",
46818
+ "description": "Installing the PrimeVue Plugin adds: Seven skills for PrimeVue implementation, setup, theming, accessibility, migration, and troubleshooting. The PrimeVue MCP server, configured with @primevue/mcp . The manifest required by the selected assistant. PrimeNG and PrimeReact are separate plugins. Installing this plugin does not change your application or install PrimeVue dependencies in the project.",
46819
46819
  "examples": null
46820
46820
  },
46821
46821
  {
46822
46822
  "id": "skills",
46823
46823
  "label": "Skills",
46824
- "description": "Each skill covers one type of PrimeVue work. The skills use @primevue/mcp@5.0.0 when they need component APIs, examples, setup guides, or usage validation. Skill Use it for primevue-router Choose the PrimeVue skill that matches the task. primevue-component-implementation Choose and implement components, forms, directives, and documented examples. primevue-setup-installation Install and configure PrimeVue in Vue, Vite, or Nuxt applications. primevue-theming-customization Configure presets, tokens, styled or unstyled mode, Tailwind, pass-through, slots, and events. primevue-accessibility-icons Review semantics, keyboard behavior, focus, accessible names, PrimeIcons, and custom icons. primevue-migration Plan and apply changes using the current PrimeVue migration guides. primevue-audit-troubleshooting Find invalid APIs and troubleshoot components, setup, MCP, plugin, or duplicate configurations. Skill names use the primevue- prefix because assistants may keep skills from several plugins in one shared namespace.",
46824
+ "description": "Each skill covers one type of PrimeVue work. The skills use @primevue/mcp when they need component APIs, examples, setup guides, or usage validation. Skill Use it for primevue-router Choose the PrimeVue skill that matches the task. primevue-component-implementation Choose and implement components, forms, directives, and documented examples. primevue-setup-installation Install and configure PrimeVue in Vue, Vite, or Nuxt applications. primevue-theming-customization Configure presets, tokens, styled or unstyled mode, Tailwind, pass-through, slots, and events. primevue-accessibility-icons Review semantics, keyboard behavior, focus, accessible names, PrimeIcons, and custom icons. primevue-migration Plan and apply changes using the current PrimeVue migration guides. primevue-audit-troubleshooting Find invalid APIs and troubleshoot components, setup, MCP, plugin, or duplicate configurations. Skill names use the primevue- prefix because assistants may keep skills from several plugins in one shared namespace.",
46825
46825
  "examples": null
46826
46826
  },
46827
46827
  {
@@ -46835,7 +46835,7 @@
46835
46835
  "label": "CLI Setup",
46836
46836
  "description": "Set --tool to the assistant you use. Keep --library primevue when you run the command outside a project or from a project that uses more than one PrimeUI library.",
46837
46837
  "examples": {
46838
- "basic": "pnpm dlx @primeui/cli@1.0.0 plugin install --tool copilot --library primevue"
46838
+ "basic": "pnpm dlx @primeui/cli plugin install --tool copilot --library primevue"
46839
46839
  }
46840
46840
  },
46841
46841
  {
@@ -46843,7 +46843,7 @@
46843
46843
  "label": "Lifecycle and Doctor",
46844
46844
  "description": "Use the same CLI to check the installation, update the plugin, or remove it. Each command applies only to PrimeVue in the selected assistant. Run doctor when the plugin or MCP server is not working as expected. It checks the installation, starts the MCP server, confirms the available tools, and tests documentation retrieval and component validation. Checks that an assistant does not expose are reported as unsupported.",
46845
46845
  "examples": {
46846
- "basic": "pnpm dlx @primeui/cli@1.0.0 plugin status --tool copilot --library primevue\npnpm dlx @primeui/cli@1.0.0 plugin update --tool copilot --library primevue\npnpm dlx @primeui/cli@1.0.0 plugin remove --tool copilot --library primevue\npnpm dlx @primeui/cli@1.0.0 doctor --tool copilot --library primevue\n\n# Machine-readable diagnostics\npnpm dlx @primeui/cli@1.0.0 doctor --tool copilot --library primevue --json"
46846
+ "basic": "pnpm dlx @primeui/cli plugin status --tool copilot --library primevue\npnpm dlx @primeui/cli plugin update --tool copilot --library primevue\npnpm dlx @primeui/cli plugin remove --tool copilot --library primevue\npnpm dlx @primeui/cli doctor --tool copilot --library primevue\n\n# Machine-readable diagnostics\npnpm dlx @primeui/cli doctor --tool copilot --library primevue --json"
46847
46847
  }
46848
46848
  },
46849
46849
  {
@@ -4,15 +4,15 @@ Give compatible AI assistants access to PrimeVue component documentation, guides
4
4
 
5
5
  ## Introduction
6
6
 
7
- Model Context Protocol (MCP) lets AI assistants call external tools. The @primevue/mcp@5.0.0 package uses those tools to search and read the PrimeVue documentation included with the package. Find components, guides, examples, and setup instructions. Read component APIs and documentation sections. Check component usage against documented properties and events. Return links to the related PrimeVue documentation when available. The server requires Node.js 22 or newer. It is read-only and does not change your project files or PrimeVue configuration.
7
+ Model Context Protocol (MCP) lets AI assistants call external tools. The @primevue/mcp package uses those tools to search and read the PrimeVue documentation included with the package. Find components, guides, examples, and setup instructions. Read component APIs and documentation sections. Check component usage against documented properties and events. Return links to the related PrimeVue documentation when available. The server requires Node.js 22 or newer. It is read-only and does not change your project files or PrimeVue configuration.
8
8
 
9
9
  ## CLI Setup
10
10
 
11
11
  The recommended setup is the PrimeVue Plugin . It installs this MCP server together with the PrimeVue skills that guide common implementation, setup, theming, migration, and troubleshooting tasks.
12
12
 
13
13
  ```vue
14
- pnpm dlx @primeui/cli@1.0.0 plugin install --tool copilot --library primevue
15
- pnpm dlx @primeui/cli@1.0.0 doctor --tool copilot --library primevue
14
+ pnpm dlx @primeui/cli plugin install --tool copilot --library primevue
15
+ pnpm dlx @primeui/cli doctor --tool copilot --library primevue
16
16
  ```
17
17
 
18
18
  ## Claude Code
@@ -21,10 +21,10 @@ Add the MCP server to your user configuration to use it in every project, or omi
21
21
 
22
22
  ```vue
23
23
  # Add to user config (available in all projects)
24
- claude mcp add primevue -s user -- npx -y @primevue/mcp@5.0.0
24
+ claude mcp add primevue -s user -- npx -y @primevue/mcp
25
25
 
26
26
  # Or add to current project only
27
- claude mcp add primevue -- npx -y @primevue/mcp@5.0.0
27
+ claude mcp add primevue -- npx -y @primevue/mcp
28
28
  ```
29
29
 
30
30
  ## VS Code
@@ -36,7 +36,7 @@ Create .vscode/mcp.json for project-level setup. To use the server across projec
36
36
  "servers": {
37
37
  "primevue": {
38
38
  "command": "npx",
39
- "args": ["-y", "@primevue/mcp@5.0.0"]
39
+ "args": ["-y", "@primevue/mcp"]
40
40
  }
41
41
  }
42
42
  }
@@ -48,12 +48,12 @@ Add the MCP server with the Codex CLI, or add the same configuration to ~/.codex
48
48
 
49
49
  ```vue
50
50
  # Using the CLI
51
- codex mcp add primevue -- npx -y @primevue/mcp@5.0.0
51
+ codex mcp add primevue -- npx -y @primevue/mcp
52
52
 
53
53
  # Or edit ~/.codex/config.toml
54
54
  [mcp_servers.primevue]
55
55
  command = "npx"
56
- args = ["-y", "@primevue/mcp@5.0.0"]
56
+ args = ["-y", "@primevue/mcp"]
57
57
  ```
58
58
 
59
59
  ## Cursor
@@ -65,7 +65,7 @@ Create .cursor/mcp.json in your project or ~/.cursor/mcp.json for global configu
65
65
  "mcpServers": {
66
66
  "primevue": {
67
67
  "command": "npx",
68
- "args": ["-y", "@primevue/mcp@5.0.0"]
68
+ "args": ["-y", "@primevue/mcp"]
69
69
  }
70
70
  }
71
71
  }
@@ -4,15 +4,15 @@ Add PrimeVue workflow skills and the PrimeVue MCP server to your AI assistant wi
4
4
 
5
5
  ## Introduction
6
6
 
7
- The PrimeVue Plugin adds PrimeVue skills and the PrimeVue MCP server to Claude Code, Codex, GitHub Copilot, Cursor, or Gemini CLI. Plugins installed through GitHub Copilot CLI are also available in VS Code. Install the plugin when you want the assistant to follow PrimeVue-specific workflows as well as read the current component documentation. The plugin is published from the primefaces/primeui-plugins repository. Use @primeui/cli@1.0.0 for the same installation flow across supported assistants, or follow the manual setup for your client.
7
+ The PrimeVue Plugin adds PrimeVue skills and the PrimeVue MCP server to Claude Code, Codex, GitHub Copilot, Cursor, or Gemini CLI. Plugins installed through GitHub Copilot CLI are also available in VS Code. Install the plugin when you want the assistant to follow PrimeVue-specific workflows as well as read the current component documentation. The plugin is published from the primefaces/primeui-plugins repository. Use @primeui/cli for the same installation flow across supported assistants, or follow the manual setup for your client.
8
8
 
9
9
  ## What It Installs
10
10
 
11
- Installing the PrimeVue Plugin adds: Seven skills for PrimeVue implementation, setup, theming, accessibility, migration, and troubleshooting. The PrimeVue MCP server, configured with @primevue/mcp@5.0.0 . The manifest required by the selected assistant. PrimeNG and PrimeReact are separate plugins. Installing this plugin does not change your application or install PrimeVue dependencies in the project.
11
+ Installing the PrimeVue Plugin adds: Seven skills for PrimeVue implementation, setup, theming, accessibility, migration, and troubleshooting. The PrimeVue MCP server, configured with @primevue/mcp . The manifest required by the selected assistant. PrimeNG and PrimeReact are separate plugins. Installing this plugin does not change your application or install PrimeVue dependencies in the project.
12
12
 
13
13
  ## Skills
14
14
 
15
- Each skill covers one type of PrimeVue work. The skills use @primevue/mcp@5.0.0 when they need component APIs, examples, setup guides, or usage validation. Skill Use it for primevue-router Choose the PrimeVue skill that matches the task. primevue-component-implementation Choose and implement components, forms, directives, and documented examples. primevue-setup-installation Install and configure PrimeVue in Vue, Vite, or Nuxt applications. primevue-theming-customization Configure presets, tokens, styled or unstyled mode, Tailwind, pass-through, slots, and events. primevue-accessibility-icons Review semantics, keyboard behavior, focus, accessible names, PrimeIcons, and custom icons. primevue-migration Plan and apply changes using the current PrimeVue migration guides. primevue-audit-troubleshooting Find invalid APIs and troubleshoot components, setup, MCP, plugin, or duplicate configurations. Skill names use the primevue- prefix because assistants may keep skills from several plugins in one shared namespace.
15
+ Each skill covers one type of PrimeVue work. The skills use @primevue/mcp when they need component APIs, examples, setup guides, or usage validation. Skill Use it for primevue-router Choose the PrimeVue skill that matches the task. primevue-component-implementation Choose and implement components, forms, directives, and documented examples. primevue-setup-installation Install and configure PrimeVue in Vue, Vite, or Nuxt applications. primevue-theming-customization Configure presets, tokens, styled or unstyled mode, Tailwind, pass-through, slots, and events. primevue-accessibility-icons Review semantics, keyboard behavior, focus, accessible names, PrimeIcons, and custom icons. primevue-migration Plan and apply changes using the current PrimeVue migration guides. primevue-audit-troubleshooting Find invalid APIs and troubleshoot components, setup, MCP, plugin, or duplicate configurations. Skill names use the primevue- prefix because assistants may keep skills from several plugins in one shared namespace.
16
16
 
17
17
  ## How Skills Work
18
18
 
@@ -23,7 +23,7 @@ You do not need to select a skill manually. Describe the PrimeVue task and the r
23
23
  Set --tool to the assistant you use. Keep --library primevue when you run the command outside a project or from a project that uses more than one PrimeUI library.
24
24
 
25
25
  ```vue
26
- pnpm dlx @primeui/cli@1.0.0 plugin install --tool copilot --library primevue
26
+ pnpm dlx @primeui/cli plugin install --tool copilot --library primevue
27
27
  ```
28
28
 
29
29
  ## Lifecycle and Doctor
@@ -31,13 +31,13 @@ pnpm dlx @primeui/cli@1.0.0 plugin install --tool copilot --library primevue
31
31
  Use the same CLI to check the installation, update the plugin, or remove it. Each command applies only to PrimeVue in the selected assistant. Run doctor when the plugin or MCP server is not working as expected. It checks the installation, starts the MCP server, confirms the available tools, and tests documentation retrieval and component validation. Checks that an assistant does not expose are reported as unsupported.
32
32
 
33
33
  ```vue
34
- pnpm dlx @primeui/cli@1.0.0 plugin status --tool copilot --library primevue
35
- pnpm dlx @primeui/cli@1.0.0 plugin update --tool copilot --library primevue
36
- pnpm dlx @primeui/cli@1.0.0 plugin remove --tool copilot --library primevue
37
- pnpm dlx @primeui/cli@1.0.0 doctor --tool copilot --library primevue
34
+ pnpm dlx @primeui/cli plugin status --tool copilot --library primevue
35
+ pnpm dlx @primeui/cli plugin update --tool copilot --library primevue
36
+ pnpm dlx @primeui/cli plugin remove --tool copilot --library primevue
37
+ pnpm dlx @primeui/cli doctor --tool copilot --library primevue
38
38
 
39
39
  # Machine-readable diagnostics
40
- pnpm dlx @primeui/cli@1.0.0 doctor --tool copilot --library primevue --json
40
+ pnpm dlx @primeui/cli doctor --tool copilot --library primevue --json
41
41
  ```
42
42
 
43
43
  ## Source
@@ -1,6 +1,6 @@
1
1
  # PrimeVue Documentation
2
2
 
3
- Generated: 2026-07-14T23:28:48.000Z
3
+ Generated: 2026-07-15T09:14:46.000Z
4
4
 
5
5
  ---
6
6
 
@@ -743,15 +743,15 @@ Give compatible AI assistants access to PrimeVue component documentation, guides
743
743
 
744
744
  ## Introduction
745
745
 
746
- Model Context Protocol (MCP) lets AI assistants call external tools. The @primevue/mcp@5.0.0 package uses those tools to search and read the PrimeVue documentation included with the package. Find components, guides, examples, and setup instructions. Read component APIs and documentation sections. Check component usage against documented properties and events. Return links to the related PrimeVue documentation when available. The server requires Node.js 22 or newer. It is read-only and does not change your project files or PrimeVue configuration.
746
+ Model Context Protocol (MCP) lets AI assistants call external tools. The @primevue/mcp package uses those tools to search and read the PrimeVue documentation included with the package. Find components, guides, examples, and setup instructions. Read component APIs and documentation sections. Check component usage against documented properties and events. Return links to the related PrimeVue documentation when available. The server requires Node.js 22 or newer. It is read-only and does not change your project files or PrimeVue configuration.
747
747
 
748
748
  ## CLI Setup
749
749
 
750
750
  The recommended setup is the PrimeVue Plugin . It installs this MCP server together with the PrimeVue skills that guide common implementation, setup, theming, migration, and troubleshooting tasks.
751
751
 
752
752
  ```vue
753
- pnpm dlx @primeui/cli@1.0.0 plugin install --tool copilot --library primevue
754
- pnpm dlx @primeui/cli@1.0.0 doctor --tool copilot --library primevue
753
+ pnpm dlx @primeui/cli plugin install --tool copilot --library primevue
754
+ pnpm dlx @primeui/cli doctor --tool copilot --library primevue
755
755
  ```
756
756
 
757
757
  ## Claude Code
@@ -760,10 +760,10 @@ Add the MCP server to your user configuration to use it in every project, or omi
760
760
 
761
761
  ```vue
762
762
  # Add to user config (available in all projects)
763
- claude mcp add primevue -s user -- npx -y @primevue/mcp@5.0.0
763
+ claude mcp add primevue -s user -- npx -y @primevue/mcp
764
764
 
765
765
  # Or add to current project only
766
- claude mcp add primevue -- npx -y @primevue/mcp@5.0.0
766
+ claude mcp add primevue -- npx -y @primevue/mcp
767
767
  ```
768
768
 
769
769
  ## VS Code
@@ -775,7 +775,7 @@ Create .vscode/mcp.json for project-level setup. To use the server across projec
775
775
  "servers": {
776
776
  "primevue": {
777
777
  "command": "npx",
778
- "args": ["-y", "@primevue/mcp@5.0.0"]
778
+ "args": ["-y", "@primevue/mcp"]
779
779
  }
780
780
  }
781
781
  }
@@ -787,12 +787,12 @@ Add the MCP server with the Codex CLI, or add the same configuration to ~/.codex
787
787
 
788
788
  ```vue
789
789
  # Using the CLI
790
- codex mcp add primevue -- npx -y @primevue/mcp@5.0.0
790
+ codex mcp add primevue -- npx -y @primevue/mcp
791
791
 
792
792
  # Or edit ~/.codex/config.toml
793
793
  [mcp_servers.primevue]
794
794
  command = "npx"
795
- args = ["-y", "@primevue/mcp@5.0.0"]
795
+ args = ["-y", "@primevue/mcp"]
796
796
  ```
797
797
 
798
798
  ## Cursor
@@ -804,7 +804,7 @@ Create .cursor/mcp.json in your project or ~/.cursor/mcp.json for global configu
804
804
  "mcpServers": {
805
805
  "primevue": {
806
806
  "command": "npx",
807
- "args": ["-y", "@primevue/mcp@5.0.0"]
807
+ "args": ["-y", "@primevue/mcp"]
808
808
  }
809
809
  }
810
810
  }
@@ -1146,15 +1146,15 @@ Add PrimeVue workflow skills and the PrimeVue MCP server to your AI assistant wi
1146
1146
 
1147
1147
  ## Introduction
1148
1148
 
1149
- The PrimeVue Plugin adds PrimeVue skills and the PrimeVue MCP server to Claude Code, Codex, GitHub Copilot, Cursor, or Gemini CLI. Plugins installed through GitHub Copilot CLI are also available in VS Code. Install the plugin when you want the assistant to follow PrimeVue-specific workflows as well as read the current component documentation. The plugin is published from the primefaces/primeui-plugins repository. Use @primeui/cli@1.0.0 for the same installation flow across supported assistants, or follow the manual setup for your client.
1149
+ The PrimeVue Plugin adds PrimeVue skills and the PrimeVue MCP server to Claude Code, Codex, GitHub Copilot, Cursor, or Gemini CLI. Plugins installed through GitHub Copilot CLI are also available in VS Code. Install the plugin when you want the assistant to follow PrimeVue-specific workflows as well as read the current component documentation. The plugin is published from the primefaces/primeui-plugins repository. Use @primeui/cli for the same installation flow across supported assistants, or follow the manual setup for your client.
1150
1150
 
1151
1151
  ## What It Installs
1152
1152
 
1153
- Installing the PrimeVue Plugin adds: Seven skills for PrimeVue implementation, setup, theming, accessibility, migration, and troubleshooting. The PrimeVue MCP server, configured with @primevue/mcp@5.0.0 . The manifest required by the selected assistant. PrimeNG and PrimeReact are separate plugins. Installing this plugin does not change your application or install PrimeVue dependencies in the project.
1153
+ Installing the PrimeVue Plugin adds: Seven skills for PrimeVue implementation, setup, theming, accessibility, migration, and troubleshooting. The PrimeVue MCP server, configured with @primevue/mcp . The manifest required by the selected assistant. PrimeNG and PrimeReact are separate plugins. Installing this plugin does not change your application or install PrimeVue dependencies in the project.
1154
1154
 
1155
1155
  ## Skills
1156
1156
 
1157
- Each skill covers one type of PrimeVue work. The skills use @primevue/mcp@5.0.0 when they need component APIs, examples, setup guides, or usage validation. Skill Use it for primevue-router Choose the PrimeVue skill that matches the task. primevue-component-implementation Choose and implement components, forms, directives, and documented examples. primevue-setup-installation Install and configure PrimeVue in Vue, Vite, or Nuxt applications. primevue-theming-customization Configure presets, tokens, styled or unstyled mode, Tailwind, pass-through, slots, and events. primevue-accessibility-icons Review semantics, keyboard behavior, focus, accessible names, PrimeIcons, and custom icons. primevue-migration Plan and apply changes using the current PrimeVue migration guides. primevue-audit-troubleshooting Find invalid APIs and troubleshoot components, setup, MCP, plugin, or duplicate configurations. Skill names use the primevue- prefix because assistants may keep skills from several plugins in one shared namespace.
1157
+ Each skill covers one type of PrimeVue work. The skills use @primevue/mcp when they need component APIs, examples, setup guides, or usage validation. Skill Use it for primevue-router Choose the PrimeVue skill that matches the task. primevue-component-implementation Choose and implement components, forms, directives, and documented examples. primevue-setup-installation Install and configure PrimeVue in Vue, Vite, or Nuxt applications. primevue-theming-customization Configure presets, tokens, styled or unstyled mode, Tailwind, pass-through, slots, and events. primevue-accessibility-icons Review semantics, keyboard behavior, focus, accessible names, PrimeIcons, and custom icons. primevue-migration Plan and apply changes using the current PrimeVue migration guides. primevue-audit-troubleshooting Find invalid APIs and troubleshoot components, setup, MCP, plugin, or duplicate configurations. Skill names use the primevue- prefix because assistants may keep skills from several plugins in one shared namespace.
1158
1158
 
1159
1159
  ## How Skills Work
1160
1160
 
@@ -1165,7 +1165,7 @@ You do not need to select a skill manually. Describe the PrimeVue task and the r
1165
1165
  Set --tool to the assistant you use. Keep --library primevue when you run the command outside a project or from a project that uses more than one PrimeUI library.
1166
1166
 
1167
1167
  ```vue
1168
- pnpm dlx @primeui/cli@1.0.0 plugin install --tool copilot --library primevue
1168
+ pnpm dlx @primeui/cli plugin install --tool copilot --library primevue
1169
1169
  ```
1170
1170
 
1171
1171
  ## Lifecycle and Doctor
@@ -1173,13 +1173,13 @@ pnpm dlx @primeui/cli@1.0.0 plugin install --tool copilot --library primevue
1173
1173
  Use the same CLI to check the installation, update the plugin, or remove it. Each command applies only to PrimeVue in the selected assistant. Run doctor when the plugin or MCP server is not working as expected. It checks the installation, starts the MCP server, confirms the available tools, and tests documentation retrieval and component validation. Checks that an assistant does not expose are reported as unsupported.
1174
1174
 
1175
1175
  ```vue
1176
- pnpm dlx @primeui/cli@1.0.0 plugin status --tool copilot --library primevue
1177
- pnpm dlx @primeui/cli@1.0.0 plugin update --tool copilot --library primevue
1178
- pnpm dlx @primeui/cli@1.0.0 plugin remove --tool copilot --library primevue
1179
- pnpm dlx @primeui/cli@1.0.0 doctor --tool copilot --library primevue
1176
+ pnpm dlx @primeui/cli plugin status --tool copilot --library primevue
1177
+ pnpm dlx @primeui/cli plugin update --tool copilot --library primevue
1178
+ pnpm dlx @primeui/cli plugin remove --tool copilot --library primevue
1179
+ pnpm dlx @primeui/cli doctor --tool copilot --library primevue
1180
1180
 
1181
1181
  # Machine-readable diagnostics
1182
- pnpm dlx @primeui/cli@1.0.0 doctor --tool copilot --library primevue --json
1182
+ pnpm dlx @primeui/cli doctor --tool copilot --library primevue --json
1183
1183
  ```
1184
1184
 
1185
1185
  ## Source
@@ -4,15 +4,15 @@ Give compatible AI assistants access to PrimeVue component documentation, guides
4
4
 
5
5
  ## Introduction
6
6
 
7
- Model Context Protocol (MCP) lets AI assistants call external tools. The @primevue/mcp@5.0.0 package uses those tools to search and read the PrimeVue documentation included with the package. Find components, guides, examples, and setup instructions. Read component APIs and documentation sections. Check component usage against documented properties and events. Return links to the related PrimeVue documentation when available. The server requires Node.js 22 or newer. It is read-only and does not change your project files or PrimeVue configuration.
7
+ Model Context Protocol (MCP) lets AI assistants call external tools. The @primevue/mcp package uses those tools to search and read the PrimeVue documentation included with the package. Find components, guides, examples, and setup instructions. Read component APIs and documentation sections. Check component usage against documented properties and events. Return links to the related PrimeVue documentation when available. The server requires Node.js 22 or newer. It is read-only and does not change your project files or PrimeVue configuration.
8
8
 
9
9
  ## CLI Setup
10
10
 
11
11
  The recommended setup is the PrimeVue Plugin . It installs this MCP server together with the PrimeVue skills that guide common implementation, setup, theming, migration, and troubleshooting tasks.
12
12
 
13
13
  ```vue
14
- pnpm dlx @primeui/cli@1.0.0 plugin install --tool copilot --library primevue
15
- pnpm dlx @primeui/cli@1.0.0 doctor --tool copilot --library primevue
14
+ pnpm dlx @primeui/cli plugin install --tool copilot --library primevue
15
+ pnpm dlx @primeui/cli doctor --tool copilot --library primevue
16
16
  ```
17
17
 
18
18
  ## Claude Code
@@ -21,10 +21,10 @@ Add the MCP server to your user configuration to use it in every project, or omi
21
21
 
22
22
  ```vue
23
23
  # Add to user config (available in all projects)
24
- claude mcp add primevue -s user -- npx -y @primevue/mcp@5.0.0
24
+ claude mcp add primevue -s user -- npx -y @primevue/mcp
25
25
 
26
26
  # Or add to current project only
27
- claude mcp add primevue -- npx -y @primevue/mcp@5.0.0
27
+ claude mcp add primevue -- npx -y @primevue/mcp
28
28
  ```
29
29
 
30
30
  ## VS Code
@@ -36,7 +36,7 @@ Create .vscode/mcp.json for project-level setup. To use the server across projec
36
36
  "servers": {
37
37
  "primevue": {
38
38
  "command": "npx",
39
- "args": ["-y", "@primevue/mcp@5.0.0"]
39
+ "args": ["-y", "@primevue/mcp"]
40
40
  }
41
41
  }
42
42
  }
@@ -48,12 +48,12 @@ Add the MCP server with the Codex CLI, or add the same configuration to ~/.codex
48
48
 
49
49
  ```vue
50
50
  # Using the CLI
51
- codex mcp add primevue -- npx -y @primevue/mcp@5.0.0
51
+ codex mcp add primevue -- npx -y @primevue/mcp
52
52
 
53
53
  # Or edit ~/.codex/config.toml
54
54
  [mcp_servers.primevue]
55
55
  command = "npx"
56
- args = ["-y", "@primevue/mcp@5.0.0"]
56
+ args = ["-y", "@primevue/mcp"]
57
57
  ```
58
58
 
59
59
  ## Cursor
@@ -65,7 +65,7 @@ Create .cursor/mcp.json in your project or ~/.cursor/mcp.json for global configu
65
65
  "mcpServers": {
66
66
  "primevue": {
67
67
  "command": "npx",
68
- "args": ["-y", "@primevue/mcp@5.0.0"]
68
+ "args": ["-y", "@primevue/mcp"]
69
69
  }
70
70
  }
71
71
  }
@@ -4,15 +4,15 @@ Add PrimeVue workflow skills and the PrimeVue MCP server to your AI assistant wi
4
4
 
5
5
  ## Introduction
6
6
 
7
- The PrimeVue Plugin adds PrimeVue skills and the PrimeVue MCP server to Claude Code, Codex, GitHub Copilot, Cursor, or Gemini CLI. Plugins installed through GitHub Copilot CLI are also available in VS Code. Install the plugin when you want the assistant to follow PrimeVue-specific workflows as well as read the current component documentation. The plugin is published from the primefaces/primeui-plugins repository. Use @primeui/cli@1.0.0 for the same installation flow across supported assistants, or follow the manual setup for your client.
7
+ The PrimeVue Plugin adds PrimeVue skills and the PrimeVue MCP server to Claude Code, Codex, GitHub Copilot, Cursor, or Gemini CLI. Plugins installed through GitHub Copilot CLI are also available in VS Code. Install the plugin when you want the assistant to follow PrimeVue-specific workflows as well as read the current component documentation. The plugin is published from the primefaces/primeui-plugins repository. Use @primeui/cli for the same installation flow across supported assistants, or follow the manual setup for your client.
8
8
 
9
9
  ## What It Installs
10
10
 
11
- Installing the PrimeVue Plugin adds: Seven skills for PrimeVue implementation, setup, theming, accessibility, migration, and troubleshooting. The PrimeVue MCP server, configured with @primevue/mcp@5.0.0 . The manifest required by the selected assistant. PrimeNG and PrimeReact are separate plugins. Installing this plugin does not change your application or install PrimeVue dependencies in the project.
11
+ Installing the PrimeVue Plugin adds: Seven skills for PrimeVue implementation, setup, theming, accessibility, migration, and troubleshooting. The PrimeVue MCP server, configured with @primevue/mcp . The manifest required by the selected assistant. PrimeNG and PrimeReact are separate plugins. Installing this plugin does not change your application or install PrimeVue dependencies in the project.
12
12
 
13
13
  ## Skills
14
14
 
15
- Each skill covers one type of PrimeVue work. The skills use @primevue/mcp@5.0.0 when they need component APIs, examples, setup guides, or usage validation. Skill Use it for primevue-router Choose the PrimeVue skill that matches the task. primevue-component-implementation Choose and implement components, forms, directives, and documented examples. primevue-setup-installation Install and configure PrimeVue in Vue, Vite, or Nuxt applications. primevue-theming-customization Configure presets, tokens, styled or unstyled mode, Tailwind, pass-through, slots, and events. primevue-accessibility-icons Review semantics, keyboard behavior, focus, accessible names, PrimeIcons, and custom icons. primevue-migration Plan and apply changes using the current PrimeVue migration guides. primevue-audit-troubleshooting Find invalid APIs and troubleshoot components, setup, MCP, plugin, or duplicate configurations. Skill names use the primevue- prefix because assistants may keep skills from several plugins in one shared namespace.
15
+ Each skill covers one type of PrimeVue work. The skills use @primevue/mcp when they need component APIs, examples, setup guides, or usage validation. Skill Use it for primevue-router Choose the PrimeVue skill that matches the task. primevue-component-implementation Choose and implement components, forms, directives, and documented examples. primevue-setup-installation Install and configure PrimeVue in Vue, Vite, or Nuxt applications. primevue-theming-customization Configure presets, tokens, styled or unstyled mode, Tailwind, pass-through, slots, and events. primevue-accessibility-icons Review semantics, keyboard behavior, focus, accessible names, PrimeIcons, and custom icons. primevue-migration Plan and apply changes using the current PrimeVue migration guides. primevue-audit-troubleshooting Find invalid APIs and troubleshoot components, setup, MCP, plugin, or duplicate configurations. Skill names use the primevue- prefix because assistants may keep skills from several plugins in one shared namespace.
16
16
 
17
17
  ## How Skills Work
18
18
 
@@ -23,7 +23,7 @@ You do not need to select a skill manually. Describe the PrimeVue task and the r
23
23
  Set --tool to the assistant you use. Keep --library primevue when you run the command outside a project or from a project that uses more than one PrimeUI library.
24
24
 
25
25
  ```vue
26
- pnpm dlx @primeui/cli@1.0.0 plugin install --tool copilot --library primevue
26
+ pnpm dlx @primeui/cli plugin install --tool copilot --library primevue
27
27
  ```
28
28
 
29
29
  ## Lifecycle and Doctor
@@ -31,13 +31,13 @@ pnpm dlx @primeui/cli@1.0.0 plugin install --tool copilot --library primevue
31
31
  Use the same CLI to check the installation, update the plugin, or remove it. Each command applies only to PrimeVue in the selected assistant. Run doctor when the plugin or MCP server is not working as expected. It checks the installation, starts the MCP server, confirms the available tools, and tests documentation retrieval and component validation. Checks that an assistant does not expose are reported as unsupported.
32
32
 
33
33
  ```vue
34
- pnpm dlx @primeui/cli@1.0.0 plugin status --tool copilot --library primevue
35
- pnpm dlx @primeui/cli@1.0.0 plugin update --tool copilot --library primevue
36
- pnpm dlx @primeui/cli@1.0.0 plugin remove --tool copilot --library primevue
37
- pnpm dlx @primeui/cli@1.0.0 doctor --tool copilot --library primevue
34
+ pnpm dlx @primeui/cli plugin status --tool copilot --library primevue
35
+ pnpm dlx @primeui/cli plugin update --tool copilot --library primevue
36
+ pnpm dlx @primeui/cli plugin remove --tool copilot --library primevue
37
+ pnpm dlx @primeui/cli doctor --tool copilot --library primevue
38
38
 
39
39
  # Machine-readable diagnostics
40
- pnpm dlx @primeui/cli@1.0.0 doctor --tool copilot --library primevue --json
40
+ pnpm dlx @primeui/cli doctor --tool copilot --library primevue --json
41
41
  ```
42
42
 
43
43
  ## Source
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "schemaVersion": 2,
3
3
  "framework": "primevue",
4
- "libraryVersion": "5.0.0-rc.3",
5
- "docsVersion": "5.0.0-rc.3",
6
- "generatedAt": "2026-07-14T23:28:48.000Z",
7
- "sourceCommit": "b8dbba591bedb9202991ff113f433139774343ff",
4
+ "libraryVersion": "5.0.0-rc.4",
5
+ "docsVersion": "5.0.0-rc.4",
6
+ "generatedAt": "2026-07-15T09:14:46.000Z",
7
+ "sourceCommit": "42065820e44a91fcedb14822bc5dce1db9e23035",
8
8
  "resourceBaseUri": "primeui://primevue",
9
9
  "counts": {
10
10
  "components": 103,
11
11
  "guides": 23,
12
12
  "apiEntries": 416,
13
13
  "resources": 232,
14
- "sourceFiles": 1344,
14
+ "sourceFiles": 1343,
15
15
  "outputFiles": 160
16
16
  },
17
17
  "components": [
@@ -7761,15 +7761,15 @@
7761
7761
  },
7762
7762
  {
7763
7763
  "path": "apps/showcase/doc/mcp/CLIDoc.vue",
7764
- "hash": "265a260b4bfc45d0e0c20d6d73161c89a215562c55f60a785cbb5cd8412860b5"
7764
+ "hash": "0cd4e4c380db7f8124d287ebd5358f5decf6c471adf97e3498dfee726ab42acb"
7765
7765
  },
7766
7766
  {
7767
7767
  "path": "apps/showcase/doc/mcp/ClaudeCodeDoc.vue",
7768
- "hash": "58cf4f996e893cabe534afcd94eb0de1d135d78727fd29ce29392695700f7ce5"
7768
+ "hash": "5133849d2a4100a19ba5eba81b65190afa26c6035ce4221af8c87e7a61428c9c"
7769
7769
  },
7770
7770
  {
7771
7771
  "path": "apps/showcase/doc/mcp/CursorDoc.vue",
7772
- "hash": "21366fda0a28ca3bea33807433fdb2cbfb9002ae7932347f6b0fd68b610041e9"
7772
+ "hash": "8eba0f97dd2344c2dd646bf40ea75d6951d463426caf01413305a830c5b172ea"
7773
7773
  },
7774
7774
  {
7775
7775
  "path": "apps/showcase/doc/mcp/DataDoc.vue",
@@ -7777,11 +7777,11 @@
7777
7777
  },
7778
7778
  {
7779
7779
  "path": "apps/showcase/doc/mcp/IntroductionDoc.vue",
7780
- "hash": "5035eaeac5b78382e54e6228f9a8776bbfd8405575ccd15447383cb75593e19a"
7780
+ "hash": "79133fc28e60c746fb202fcc0f887fcb2761f2eb22c894385d2e445c4c72366b"
7781
7781
  },
7782
7782
  {
7783
7783
  "path": "apps/showcase/doc/mcp/OpenAICodexDoc.vue",
7784
- "hash": "4614dcc0d27592ca472db3ecca48cd1b8c3982892e999edea4a582043c3e3abd"
7784
+ "hash": "6020ee170be1bd351eb75bc5b0f0aebcf4c86421f7fe60be17ae6a039cf8a0ad"
7785
7785
  },
7786
7786
  {
7787
7787
  "path": "apps/showcase/doc/mcp/ToolsDoc.vue",
@@ -7789,7 +7789,7 @@
7789
7789
  },
7790
7790
  {
7791
7791
  "path": "apps/showcase/doc/mcp/VSCodeDoc.vue",
7792
- "hash": "d7674e812b308c2523a5cdb58ea588a79d544e53c5189d62c0aa880d625576c4"
7792
+ "hash": "d7a2f8eb007cf8fae2d2f80630767152d94b751aa667ef3a5fa07e4a323ff1cd"
7793
7793
  },
7794
7794
  {
7795
7795
  "path": "apps/showcase/doc/megamenu/AccessibilityDoc.vue",
@@ -8397,7 +8397,7 @@
8397
8397
  },
8398
8398
  {
8399
8399
  "path": "apps/showcase/doc/plugin/CLIDoc.vue",
8400
- "hash": "810b553d80e25017938f14b4a6c4e96ece299264be1708377de744027c662fec"
8400
+ "hash": "be7f04b4ee52a630b837462c7f141677a173b28f9a4aadbb7fff44ee54fcfc42"
8401
8401
  },
8402
8402
  {
8403
8403
  "path": "apps/showcase/doc/plugin/ClaudeCodeDoc.vue",
@@ -8409,7 +8409,7 @@
8409
8409
  },
8410
8410
  {
8411
8411
  "path": "apps/showcase/doc/plugin/ContentsDoc.vue",
8412
- "hash": "56077fe5abea37c4818469b4172eb93db611b74eff86a83dc58c7dfeb976f288"
8412
+ "hash": "8c5176e208b5af14db5aad42bf76d25ad226259f164c1e00ac2ccf8fcec3da52"
8413
8413
  },
8414
8414
  {
8415
8415
  "path": "apps/showcase/doc/plugin/CursorDoc.vue",
@@ -8421,11 +8421,11 @@
8421
8421
  },
8422
8422
  {
8423
8423
  "path": "apps/showcase/doc/plugin/IntroductionDoc.vue",
8424
- "hash": "a3102c978336f0f1ae21d230d45322ac13f7eff7f20cfe2c709bf13552aec1f3"
8424
+ "hash": "6b81f3dd850ebd431d3c1f083471290c731151d1243ae84719364d2676bcb72f"
8425
8425
  },
8426
8426
  {
8427
8427
  "path": "apps/showcase/doc/plugin/LifecycleDoc.vue",
8428
- "hash": "ac5d4c8e357a3816ae14bdb3a5b1d6aea2e88a2e74573385fc766677bc00c259"
8428
+ "hash": "baf866e349ef93002c926fa089da3dcb9a2e9e990b831dd983f8c068e46b1d70"
8429
8429
  },
8430
8430
  {
8431
8431
  "path": "apps/showcase/doc/plugin/ManualSourceDoc.vue",
@@ -8437,7 +8437,7 @@
8437
8437
  },
8438
8438
  {
8439
8439
  "path": "apps/showcase/doc/plugin/SkillsDoc.vue",
8440
- "hash": "e56566d939ccdedf47ed867868d19fff8a323a9f2309436c1e9728de9b11667d"
8440
+ "hash": "75e45ec89a587c0e9e424463c466d362d5644e93ccdb3c74a83ebf19e787c0ef"
8441
8441
  },
8442
8442
  {
8443
8443
  "path": "apps/showcase/doc/plugin/VSCodeCopilotDoc.vue",
@@ -10041,7 +10041,7 @@
10041
10041
  },
10042
10042
  {
10043
10043
  "path": "apps/showcase/package.json",
10044
- "hash": "fe7796d58580225401b10d73d94976319c01a7d3298c49bff7bc171a81018e44"
10044
+ "hash": "803ca7e415e9f8ab292205230504249c71cd6fce7b08493d7b7a6896f9956abb"
10045
10045
  },
10046
10046
  {
10047
10047
  "path": "apps/showcase/pages/accordion/index.vue",
@@ -10549,19 +10549,15 @@
10549
10549
  },
10550
10550
  {
10551
10551
  "path": "apps/showcase/scripts/build-llm-docs.mjs",
10552
- "hash": "10e0a75fc86036fba90a04713b827b7c7851314b634cd2dfcf18a58fbfbbad54"
10552
+ "hash": "54d39024258f8295bd9d212f2cfedff87a07a012904dc31ae421e40f898c07d3"
10553
10553
  },
10554
10554
  {
10555
10555
  "path": "apps/showcase/scripts/llm-docs-provenance.mjs",
10556
- "hash": "6ca6e720c332d212893f44d20fbd50a82ed34b071705d1dd0d62a0d3daf35dab"
10556
+ "hash": "86657808ea729b3b6dc9c86326f55c161c4c1bc41f1cf25506d9e153fad00fdd"
10557
10557
  },
10558
10558
  {
10559
10559
  "path": "package.json",
10560
- "hash": "de27c46e6866fc1617254cdd71b0fa7a8d3c01278404226b2d420e4a0acbeef7"
10561
- },
10562
- {
10563
- "path": "pnpm-lock.yaml",
10564
- "hash": "30ca392db08a2ebd3245446ae75b5abad24c3b4ed971a2035793bdcc13b3ba2e"
10560
+ "hash": "95ac3399c0dd69d433ef4d3ec0139144d3785f3f38ddbde8cfe1556ff009f32d"
10565
10561
  }
10566
10562
  ],
10567
10563
  "outputFiles": [
@@ -11337,13 +11333,13 @@
11337
11333
  "path": "apps/showcase/server/assets/llms/guides/mcp.md",
11338
11334
  "type": "guide",
11339
11335
  "resourceUri": "primeui://primevue/guides/mcp.md",
11340
- "hash": "e67b046bc0b606a920feea86a5436aa60b4366bb59b546467d4ee95f32673143"
11336
+ "hash": "97f332bbacd75356b1be5fdc4295ffb5797b9f00e4a307c98164faf41437d9dd"
11341
11337
  },
11342
11338
  {
11343
11339
  "path": "apps/showcase/server/assets/llms/pages/mcp.md",
11344
11340
  "type": "legacy-guide",
11345
11341
  "resourceUri": null,
11346
- "hash": "e67b046bc0b606a920feea86a5436aa60b4366bb59b546467d4ee95f32673143"
11342
+ "hash": "97f332bbacd75356b1be5fdc4295ffb5797b9f00e4a307c98164faf41437d9dd"
11347
11343
  },
11348
11344
  {
11349
11345
  "path": "apps/showcase/server/assets/llms/guides/migration/v4.md",
@@ -11409,13 +11405,13 @@
11409
11405
  "path": "apps/showcase/server/assets/llms/guides/plugin.md",
11410
11406
  "type": "guide",
11411
11407
  "resourceUri": "primeui://primevue/guides/plugin.md",
11412
- "hash": "6fa32ccaeaf0d273dbcaff098a341d7a0feddc185e62ffe190a42218a8ece8a1"
11408
+ "hash": "816e6ffc0433ad15c04e1578015fb0b027c0ab567159dde47530afca96fee2a9"
11413
11409
  },
11414
11410
  {
11415
11411
  "path": "apps/showcase/server/assets/llms/pages/plugin.md",
11416
11412
  "type": "legacy-guide",
11417
11413
  "resourceUri": null,
11418
- "hash": "6fa32ccaeaf0d273dbcaff098a341d7a0feddc185e62ffe190a42218a8ece8a1"
11414
+ "hash": "816e6ffc0433ad15c04e1578015fb0b027c0ab567159dde47530afca96fee2a9"
11419
11415
  },
11420
11416
  {
11421
11417
  "path": "apps/showcase/server/assets/llms/guides/primeclt.md",
@@ -11511,19 +11507,19 @@
11511
11507
  "path": "apps/showcase/server/assets/llms/llms-full.txt",
11512
11508
  "type": "full",
11513
11509
  "resourceUri": "primeui://primevue/llms-full.txt",
11514
- "hash": "d8246ceaebf69282893548cf95de02c70255c843a128ab7fb335833e5e14931a"
11510
+ "hash": "dc6520dfe268fb5b9a18d03b29694960acc50bdbdcec2d42c81e083ad9aeb45e"
11515
11511
  },
11516
11512
  {
11517
11513
  "path": "apps/showcase/server/assets/llms/components.json",
11518
11514
  "type": "legacy-data",
11519
11515
  "resourceUri": null,
11520
- "hash": "9e37c8db9f0eddfe6b88f4a5eb74cf918c6897954859d2f7c1ccabe6381bdb4d"
11516
+ "hash": "64c815bc28077db90d2e74c7546f3402ff353adb65e1949c606f3164aef82113"
11521
11517
  },
11522
11518
  {
11523
11519
  "path": "apps/showcase/server/assets/llms/mcp-data.json",
11524
11520
  "type": "mcp-data",
11525
11521
  "resourceUri": "primeui://primevue/mcp-data.json",
11526
- "hash": "eb49acbf31fecda7c03df94c1d1b9ff84fdf4feb2e51258a533ec28461a6703c"
11522
+ "hash": "553af94dc44cda057ed7f9c4044649d51c0703760c07cf5a4b64a424712bba8d"
11527
11523
  }
11528
11524
  ],
11529
11525
  "manualMetadata": [
@@ -11565,5 +11561,5 @@
11565
11561
  }
11566
11562
  ]
11567
11563
  },
11568
- "contentHash": "a39f37982fdeb71bd3c74b036f02c4ba84c649682d12fddbcb34a85b66a31efd"
11564
+ "contentHash": "30369a8c230dd6f26b2baafa45fcff159b6ff3b967702f2d386873354d42867b"
11569
11565
  }
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "schemaVersion": 2,
3
3
  "framework": "primevue",
4
- "libraryVersion": "5.0.0-rc.3",
5
- "docsVersion": "5.0.0-rc.3",
6
- "generatedAt": "2026-07-14T23:28:48.000Z",
7
- "sourceCommit": "b8dbba591bedb9202991ff113f433139774343ff",
4
+ "libraryVersion": "5.0.0-rc.4",
5
+ "docsVersion": "5.0.0-rc.4",
6
+ "generatedAt": "2026-07-15T09:14:46.000Z",
7
+ "sourceCommit": "42065820e44a91fcedb14822bc5dce1db9e23035",
8
8
  "resourceBaseUri": "primeui://primevue",
9
9
  "counts": {
10
10
  "components": 103,
@@ -55236,7 +55236,7 @@
55236
55236
  {
55237
55237
  "id": "introduction",
55238
55238
  "label": "Introduction",
55239
- "description": "Model Context Protocol (MCP) lets AI assistants call external tools. The @primevue/mcp@5.0.0 package uses those tools to search and read the PrimeVue documentation included with the package. Find components, guides, examples, and setup instructions. Read component APIs and documentation sections. Check component usage against documented properties and events. Return links to the related PrimeVue documentation when available. The server requires Node.js 22 or newer. It is read-only and does not change your project files or PrimeVue configuration.",
55239
+ "description": "Model Context Protocol (MCP) lets AI assistants call external tools. The @primevue/mcp package uses those tools to search and read the PrimeVue documentation included with the package. Find components, guides, examples, and setup instructions. Read component APIs and documentation sections. Check component usage against documented properties and events. Return links to the related PrimeVue documentation when available. The server requires Node.js 22 or newer. It is read-only and does not change your project files or PrimeVue configuration.",
55240
55240
  "sourceFile": "apps/showcase/doc/mcp/IntroductionDoc.vue"
55241
55241
  },
55242
55242
  {
@@ -55576,19 +55576,19 @@
55576
55576
  {
55577
55577
  "id": "introduction",
55578
55578
  "label": "Introduction",
55579
- "description": "The PrimeVue Plugin adds PrimeVue skills and the PrimeVue MCP server to Claude Code, Codex, GitHub Copilot, Cursor, or Gemini CLI. Plugins installed through GitHub Copilot CLI are also available in VS Code. Install the plugin when you want the assistant to follow PrimeVue-specific workflows as well as read the current component documentation. The plugin is published from the primefaces/primeui-plugins repository. Use @primeui/cli@1.0.0 for the same installation flow across supported assistants, or follow the manual setup for your client.",
55579
+ "description": "The PrimeVue Plugin adds PrimeVue skills and the PrimeVue MCP server to Claude Code, Codex, GitHub Copilot, Cursor, or Gemini CLI. Plugins installed through GitHub Copilot CLI are also available in VS Code. Install the plugin when you want the assistant to follow PrimeVue-specific workflows as well as read the current component documentation. The plugin is published from the primefaces/primeui-plugins repository. Use @primeui/cli for the same installation flow across supported assistants, or follow the manual setup for your client.",
55580
55580
  "sourceFile": "apps/showcase/doc/plugin/IntroductionDoc.vue"
55581
55581
  },
55582
55582
  {
55583
55583
  "id": "contents",
55584
55584
  "label": "What It Installs",
55585
- "description": "Installing the PrimeVue Plugin adds: Seven skills for PrimeVue implementation, setup, theming, accessibility, migration, and troubleshooting. The PrimeVue MCP server, configured with @primevue/mcp@5.0.0 . The manifest required by the selected assistant. PrimeNG and PrimeReact are separate plugins. Installing this plugin does not change your application or install PrimeVue dependencies in the project.",
55585
+ "description": "Installing the PrimeVue Plugin adds: Seven skills for PrimeVue implementation, setup, theming, accessibility, migration, and troubleshooting. The PrimeVue MCP server, configured with @primevue/mcp . The manifest required by the selected assistant. PrimeNG and PrimeReact are separate plugins. Installing this plugin does not change your application or install PrimeVue dependencies in the project.",
55586
55586
  "sourceFile": "apps/showcase/doc/plugin/ContentsDoc.vue"
55587
55587
  },
55588
55588
  {
55589
55589
  "id": "skills",
55590
55590
  "label": "Skills",
55591
- "description": "Each skill covers one type of PrimeVue work. The skills use @primevue/mcp@5.0.0 when they need component APIs, examples, setup guides, or usage validation. Skill Use it for primevue-router Choose the PrimeVue skill that matches the task. primevue-component-implementation Choose and implement components, forms, directives, and documented examples. primevue-setup-installation Install and configure PrimeVue in Vue, Vite, or Nuxt applications. primevue-theming-customization Configure presets, tokens, styled or unstyled mode, Tailwind, pass-through, slots, and events. primevue-accessibility-icons Review semantics, keyboard behavior, focus, accessible names, PrimeIcons, and custom icons. primevue-migration Plan and apply changes using the current PrimeVue migration guides. primevue-audit-troubleshooting Find invalid APIs and troubleshoot components, setup, MCP, plugin, or duplicate configurations. Skill names use the primevue- prefix because assistants may keep skills from several plugins in one shared namespace.",
55591
+ "description": "Each skill covers one type of PrimeVue work. The skills use @primevue/mcp when they need component APIs, examples, setup guides, or usage validation. Skill Use it for primevue-router Choose the PrimeVue skill that matches the task. primevue-component-implementation Choose and implement components, forms, directives, and documented examples. primevue-setup-installation Install and configure PrimeVue in Vue, Vite, or Nuxt applications. primevue-theming-customization Configure presets, tokens, styled or unstyled mode, Tailwind, pass-through, slots, and events. primevue-accessibility-icons Review semantics, keyboard behavior, focus, accessible names, PrimeIcons, and custom icons. primevue-migration Plan and apply changes using the current PrimeVue migration guides. primevue-audit-troubleshooting Find invalid APIs and troubleshoot components, setup, MCP, plugin, or duplicate configurations. Skill names use the primevue- prefix because assistants may keep skills from several plugins in one shared namespace.",
55592
55592
  "sourceFile": "apps/showcase/doc/plugin/SkillsDoc.vue"
55593
55593
  },
55594
55594
  {
@@ -56160,5 +56160,5 @@
56160
56160
  }
56161
56161
  ]
56162
56162
  },
56163
- "contentHash": "ca9ae098367a06694d11b60c4b48598f036d62044d4593e702d97426e472b939"
56163
+ "contentHash": "c0557d0ba73fd70ec7476da732330dcc7be2f75ef437182682e0e2640b50f134"
56164
56164
  }
package/dist/index.js CHANGED
@@ -13,17 +13,17 @@ import { createPrimeMcpServer, runPrimeMcpServer } from "@primeuix/mcp";
13
13
  var manifest_default = {
14
14
  schemaVersion: 2,
15
15
  framework: "primevue",
16
- libraryVersion: "5.0.0-rc.3",
17
- docsVersion: "5.0.0-rc.3",
18
- generatedAt: "2026-07-14T23:28:48.000Z",
19
- sourceCommit: "b8dbba591bedb9202991ff113f433139774343ff",
16
+ libraryVersion: "5.0.0-rc.4",
17
+ docsVersion: "5.0.0-rc.4",
18
+ generatedAt: "2026-07-15T09:14:46.000Z",
19
+ sourceCommit: "42065820e44a91fcedb14822bc5dce1db9e23035",
20
20
  resourceBaseUri: "primeui://primevue",
21
21
  counts: {
22
22
  components: 103,
23
23
  guides: 23,
24
24
  apiEntries: 416,
25
25
  resources: 232,
26
- sourceFiles: 1344,
26
+ sourceFiles: 1343,
27
27
  outputFiles: 160
28
28
  },
29
29
  components: [
@@ -7773,15 +7773,15 @@ var manifest_default = {
7773
7773
  },
7774
7774
  {
7775
7775
  path: "apps/showcase/doc/mcp/CLIDoc.vue",
7776
- hash: "265a260b4bfc45d0e0c20d6d73161c89a215562c55f60a785cbb5cd8412860b5"
7776
+ hash: "0cd4e4c380db7f8124d287ebd5358f5decf6c471adf97e3498dfee726ab42acb"
7777
7777
  },
7778
7778
  {
7779
7779
  path: "apps/showcase/doc/mcp/ClaudeCodeDoc.vue",
7780
- hash: "58cf4f996e893cabe534afcd94eb0de1d135d78727fd29ce29392695700f7ce5"
7780
+ hash: "5133849d2a4100a19ba5eba81b65190afa26c6035ce4221af8c87e7a61428c9c"
7781
7781
  },
7782
7782
  {
7783
7783
  path: "apps/showcase/doc/mcp/CursorDoc.vue",
7784
- hash: "21366fda0a28ca3bea33807433fdb2cbfb9002ae7932347f6b0fd68b610041e9"
7784
+ hash: "8eba0f97dd2344c2dd646bf40ea75d6951d463426caf01413305a830c5b172ea"
7785
7785
  },
7786
7786
  {
7787
7787
  path: "apps/showcase/doc/mcp/DataDoc.vue",
@@ -7789,11 +7789,11 @@ var manifest_default = {
7789
7789
  },
7790
7790
  {
7791
7791
  path: "apps/showcase/doc/mcp/IntroductionDoc.vue",
7792
- hash: "5035eaeac5b78382e54e6228f9a8776bbfd8405575ccd15447383cb75593e19a"
7792
+ hash: "79133fc28e60c746fb202fcc0f887fcb2761f2eb22c894385d2e445c4c72366b"
7793
7793
  },
7794
7794
  {
7795
7795
  path: "apps/showcase/doc/mcp/OpenAICodexDoc.vue",
7796
- hash: "4614dcc0d27592ca472db3ecca48cd1b8c3982892e999edea4a582043c3e3abd"
7796
+ hash: "6020ee170be1bd351eb75bc5b0f0aebcf4c86421f7fe60be17ae6a039cf8a0ad"
7797
7797
  },
7798
7798
  {
7799
7799
  path: "apps/showcase/doc/mcp/ToolsDoc.vue",
@@ -7801,7 +7801,7 @@ var manifest_default = {
7801
7801
  },
7802
7802
  {
7803
7803
  path: "apps/showcase/doc/mcp/VSCodeDoc.vue",
7804
- hash: "d7674e812b308c2523a5cdb58ea588a79d544e53c5189d62c0aa880d625576c4"
7804
+ hash: "d7a2f8eb007cf8fae2d2f80630767152d94b751aa667ef3a5fa07e4a323ff1cd"
7805
7805
  },
7806
7806
  {
7807
7807
  path: "apps/showcase/doc/megamenu/AccessibilityDoc.vue",
@@ -8409,7 +8409,7 @@ var manifest_default = {
8409
8409
  },
8410
8410
  {
8411
8411
  path: "apps/showcase/doc/plugin/CLIDoc.vue",
8412
- hash: "810b553d80e25017938f14b4a6c4e96ece299264be1708377de744027c662fec"
8412
+ hash: "be7f04b4ee52a630b837462c7f141677a173b28f9a4aadbb7fff44ee54fcfc42"
8413
8413
  },
8414
8414
  {
8415
8415
  path: "apps/showcase/doc/plugin/ClaudeCodeDoc.vue",
@@ -8421,7 +8421,7 @@ var manifest_default = {
8421
8421
  },
8422
8422
  {
8423
8423
  path: "apps/showcase/doc/plugin/ContentsDoc.vue",
8424
- hash: "56077fe5abea37c4818469b4172eb93db611b74eff86a83dc58c7dfeb976f288"
8424
+ hash: "8c5176e208b5af14db5aad42bf76d25ad226259f164c1e00ac2ccf8fcec3da52"
8425
8425
  },
8426
8426
  {
8427
8427
  path: "apps/showcase/doc/plugin/CursorDoc.vue",
@@ -8433,11 +8433,11 @@ var manifest_default = {
8433
8433
  },
8434
8434
  {
8435
8435
  path: "apps/showcase/doc/plugin/IntroductionDoc.vue",
8436
- hash: "a3102c978336f0f1ae21d230d45322ac13f7eff7f20cfe2c709bf13552aec1f3"
8436
+ hash: "6b81f3dd850ebd431d3c1f083471290c731151d1243ae84719364d2676bcb72f"
8437
8437
  },
8438
8438
  {
8439
8439
  path: "apps/showcase/doc/plugin/LifecycleDoc.vue",
8440
- hash: "ac5d4c8e357a3816ae14bdb3a5b1d6aea2e88a2e74573385fc766677bc00c259"
8440
+ hash: "baf866e349ef93002c926fa089da3dcb9a2e9e990b831dd983f8c068e46b1d70"
8441
8441
  },
8442
8442
  {
8443
8443
  path: "apps/showcase/doc/plugin/ManualSourceDoc.vue",
@@ -8449,7 +8449,7 @@ var manifest_default = {
8449
8449
  },
8450
8450
  {
8451
8451
  path: "apps/showcase/doc/plugin/SkillsDoc.vue",
8452
- hash: "e56566d939ccdedf47ed867868d19fff8a323a9f2309436c1e9728de9b11667d"
8452
+ hash: "75e45ec89a587c0e9e424463c466d362d5644e93ccdb3c74a83ebf19e787c0ef"
8453
8453
  },
8454
8454
  {
8455
8455
  path: "apps/showcase/doc/plugin/VSCodeCopilotDoc.vue",
@@ -10053,7 +10053,7 @@ var manifest_default = {
10053
10053
  },
10054
10054
  {
10055
10055
  path: "apps/showcase/package.json",
10056
- hash: "fe7796d58580225401b10d73d94976319c01a7d3298c49bff7bc171a81018e44"
10056
+ hash: "803ca7e415e9f8ab292205230504249c71cd6fce7b08493d7b7a6896f9956abb"
10057
10057
  },
10058
10058
  {
10059
10059
  path: "apps/showcase/pages/accordion/index.vue",
@@ -10561,19 +10561,15 @@ var manifest_default = {
10561
10561
  },
10562
10562
  {
10563
10563
  path: "apps/showcase/scripts/build-llm-docs.mjs",
10564
- hash: "10e0a75fc86036fba90a04713b827b7c7851314b634cd2dfcf18a58fbfbbad54"
10564
+ hash: "54d39024258f8295bd9d212f2cfedff87a07a012904dc31ae421e40f898c07d3"
10565
10565
  },
10566
10566
  {
10567
10567
  path: "apps/showcase/scripts/llm-docs-provenance.mjs",
10568
- hash: "6ca6e720c332d212893f44d20fbd50a82ed34b071705d1dd0d62a0d3daf35dab"
10568
+ hash: "86657808ea729b3b6dc9c86326f55c161c4c1bc41f1cf25506d9e153fad00fdd"
10569
10569
  },
10570
10570
  {
10571
10571
  path: "package.json",
10572
- hash: "de27c46e6866fc1617254cdd71b0fa7a8d3c01278404226b2d420e4a0acbeef7"
10573
- },
10574
- {
10575
- path: "pnpm-lock.yaml",
10576
- hash: "30ca392db08a2ebd3245446ae75b5abad24c3b4ed971a2035793bdcc13b3ba2e"
10572
+ hash: "95ac3399c0dd69d433ef4d3ec0139144d3785f3f38ddbde8cfe1556ff009f32d"
10577
10573
  }
10578
10574
  ],
10579
10575
  outputFiles: [
@@ -11349,13 +11345,13 @@ var manifest_default = {
11349
11345
  path: "apps/showcase/server/assets/llms/guides/mcp.md",
11350
11346
  type: "guide",
11351
11347
  resourceUri: "primeui://primevue/guides/mcp.md",
11352
- hash: "e67b046bc0b606a920feea86a5436aa60b4366bb59b546467d4ee95f32673143"
11348
+ hash: "97f332bbacd75356b1be5fdc4295ffb5797b9f00e4a307c98164faf41437d9dd"
11353
11349
  },
11354
11350
  {
11355
11351
  path: "apps/showcase/server/assets/llms/pages/mcp.md",
11356
11352
  type: "legacy-guide",
11357
11353
  resourceUri: null,
11358
- hash: "e67b046bc0b606a920feea86a5436aa60b4366bb59b546467d4ee95f32673143"
11354
+ hash: "97f332bbacd75356b1be5fdc4295ffb5797b9f00e4a307c98164faf41437d9dd"
11359
11355
  },
11360
11356
  {
11361
11357
  path: "apps/showcase/server/assets/llms/guides/migration/v4.md",
@@ -11421,13 +11417,13 @@ var manifest_default = {
11421
11417
  path: "apps/showcase/server/assets/llms/guides/plugin.md",
11422
11418
  type: "guide",
11423
11419
  resourceUri: "primeui://primevue/guides/plugin.md",
11424
- hash: "6fa32ccaeaf0d273dbcaff098a341d7a0feddc185e62ffe190a42218a8ece8a1"
11420
+ hash: "816e6ffc0433ad15c04e1578015fb0b027c0ab567159dde47530afca96fee2a9"
11425
11421
  },
11426
11422
  {
11427
11423
  path: "apps/showcase/server/assets/llms/pages/plugin.md",
11428
11424
  type: "legacy-guide",
11429
11425
  resourceUri: null,
11430
- hash: "6fa32ccaeaf0d273dbcaff098a341d7a0feddc185e62ffe190a42218a8ece8a1"
11426
+ hash: "816e6ffc0433ad15c04e1578015fb0b027c0ab567159dde47530afca96fee2a9"
11431
11427
  },
11432
11428
  {
11433
11429
  path: "apps/showcase/server/assets/llms/guides/primeclt.md",
@@ -11523,19 +11519,19 @@ var manifest_default = {
11523
11519
  path: "apps/showcase/server/assets/llms/llms-full.txt",
11524
11520
  type: "full",
11525
11521
  resourceUri: "primeui://primevue/llms-full.txt",
11526
- hash: "d8246ceaebf69282893548cf95de02c70255c843a128ab7fb335833e5e14931a"
11522
+ hash: "dc6520dfe268fb5b9a18d03b29694960acc50bdbdcec2d42c81e083ad9aeb45e"
11527
11523
  },
11528
11524
  {
11529
11525
  path: "apps/showcase/server/assets/llms/components.json",
11530
11526
  type: "legacy-data",
11531
11527
  resourceUri: null,
11532
- hash: "9e37c8db9f0eddfe6b88f4a5eb74cf918c6897954859d2f7c1ccabe6381bdb4d"
11528
+ hash: "64c815bc28077db90d2e74c7546f3402ff353adb65e1949c606f3164aef82113"
11533
11529
  },
11534
11530
  {
11535
11531
  path: "apps/showcase/server/assets/llms/mcp-data.json",
11536
11532
  type: "mcp-data",
11537
11533
  resourceUri: "primeui://primevue/mcp-data.json",
11538
- hash: "eb49acbf31fecda7c03df94c1d1b9ff84fdf4feb2e51258a533ec28461a6703c"
11534
+ hash: "553af94dc44cda057ed7f9c4044649d51c0703760c07cf5a4b64a424712bba8d"
11539
11535
  }
11540
11536
  ],
11541
11537
  manualMetadata: [
@@ -11577,17 +11573,17 @@ var manifest_default = {
11577
11573
  }
11578
11574
  ]
11579
11575
  },
11580
- contentHash: "a39f37982fdeb71bd3c74b036f02c4ba84c649682d12fddbcb34a85b66a31efd"
11576
+ contentHash: "30369a8c230dd6f26b2baafa45fcff159b6ff3b967702f2d386873354d42867b"
11581
11577
  };
11582
11578
 
11583
11579
  // data/mcp-data.json
11584
11580
  var mcp_data_default = {
11585
11581
  schemaVersion: 2,
11586
11582
  framework: "primevue",
11587
- libraryVersion: "5.0.0-rc.3",
11588
- docsVersion: "5.0.0-rc.3",
11589
- generatedAt: "2026-07-14T23:28:48.000Z",
11590
- sourceCommit: "b8dbba591bedb9202991ff113f433139774343ff",
11583
+ libraryVersion: "5.0.0-rc.4",
11584
+ docsVersion: "5.0.0-rc.4",
11585
+ generatedAt: "2026-07-15T09:14:46.000Z",
11586
+ sourceCommit: "42065820e44a91fcedb14822bc5dce1db9e23035",
11591
11587
  resourceBaseUri: "primeui://primevue",
11592
11588
  counts: {
11593
11589
  components: 103,
@@ -66819,7 +66815,7 @@ var mcp_data_default = {
66819
66815
  {
66820
66816
  id: "introduction",
66821
66817
  label: "Introduction",
66822
- description: "Model Context Protocol (MCP) lets AI assistants call external tools. The @primevue/mcp@5.0.0 package uses those tools to search and read the PrimeVue documentation included with the package. Find components, guides, examples, and setup instructions. Read component APIs and documentation sections. Check component usage against documented properties and events. Return links to the related PrimeVue documentation when available. The server requires Node.js 22 or newer. It is read-only and does not change your project files or PrimeVue configuration.",
66818
+ description: "Model Context Protocol (MCP) lets AI assistants call external tools. The @primevue/mcp package uses those tools to search and read the PrimeVue documentation included with the package. Find components, guides, examples, and setup instructions. Read component APIs and documentation sections. Check component usage against documented properties and events. Return links to the related PrimeVue documentation when available. The server requires Node.js 22 or newer. It is read-only and does not change your project files or PrimeVue configuration.",
66823
66819
  sourceFile: "apps/showcase/doc/mcp/IntroductionDoc.vue"
66824
66820
  },
66825
66821
  {
@@ -67159,19 +67155,19 @@ var mcp_data_default = {
67159
67155
  {
67160
67156
  id: "introduction",
67161
67157
  label: "Introduction",
67162
- description: "The PrimeVue Plugin adds PrimeVue skills and the PrimeVue MCP server to Claude Code, Codex, GitHub Copilot, Cursor, or Gemini CLI. Plugins installed through GitHub Copilot CLI are also available in VS Code. Install the plugin when you want the assistant to follow PrimeVue-specific workflows as well as read the current component documentation. The plugin is published from the primefaces/primeui-plugins repository. Use @primeui/cli@1.0.0 for the same installation flow across supported assistants, or follow the manual setup for your client.",
67158
+ description: "The PrimeVue Plugin adds PrimeVue skills and the PrimeVue MCP server to Claude Code, Codex, GitHub Copilot, Cursor, or Gemini CLI. Plugins installed through GitHub Copilot CLI are also available in VS Code. Install the plugin when you want the assistant to follow PrimeVue-specific workflows as well as read the current component documentation. The plugin is published from the primefaces/primeui-plugins repository. Use @primeui/cli for the same installation flow across supported assistants, or follow the manual setup for your client.",
67163
67159
  sourceFile: "apps/showcase/doc/plugin/IntroductionDoc.vue"
67164
67160
  },
67165
67161
  {
67166
67162
  id: "contents",
67167
67163
  label: "What It Installs",
67168
- description: "Installing the PrimeVue Plugin adds: Seven skills for PrimeVue implementation, setup, theming, accessibility, migration, and troubleshooting. The PrimeVue MCP server, configured with @primevue/mcp@5.0.0 . The manifest required by the selected assistant. PrimeNG and PrimeReact are separate plugins. Installing this plugin does not change your application or install PrimeVue dependencies in the project.",
67164
+ description: "Installing the PrimeVue Plugin adds: Seven skills for PrimeVue implementation, setup, theming, accessibility, migration, and troubleshooting. The PrimeVue MCP server, configured with @primevue/mcp . The manifest required by the selected assistant. PrimeNG and PrimeReact are separate plugins. Installing this plugin does not change your application or install PrimeVue dependencies in the project.",
67169
67165
  sourceFile: "apps/showcase/doc/plugin/ContentsDoc.vue"
67170
67166
  },
67171
67167
  {
67172
67168
  id: "skills",
67173
67169
  label: "Skills",
67174
- description: "Each skill covers one type of PrimeVue work. The skills use @primevue/mcp@5.0.0 when they need component APIs, examples, setup guides, or usage validation. Skill Use it for primevue-router Choose the PrimeVue skill that matches the task. primevue-component-implementation Choose and implement components, forms, directives, and documented examples. primevue-setup-installation Install and configure PrimeVue in Vue, Vite, or Nuxt applications. primevue-theming-customization Configure presets, tokens, styled or unstyled mode, Tailwind, pass-through, slots, and events. primevue-accessibility-icons Review semantics, keyboard behavior, focus, accessible names, PrimeIcons, and custom icons. primevue-migration Plan and apply changes using the current PrimeVue migration guides. primevue-audit-troubleshooting Find invalid APIs and troubleshoot components, setup, MCP, plugin, or duplicate configurations. Skill names use the primevue- prefix because assistants may keep skills from several plugins in one shared namespace.",
67170
+ description: "Each skill covers one type of PrimeVue work. The skills use @primevue/mcp when they need component APIs, examples, setup guides, or usage validation. Skill Use it for primevue-router Choose the PrimeVue skill that matches the task. primevue-component-implementation Choose and implement components, forms, directives, and documented examples. primevue-setup-installation Install and configure PrimeVue in Vue, Vite, or Nuxt applications. primevue-theming-customization Configure presets, tokens, styled or unstyled mode, Tailwind, pass-through, slots, and events. primevue-accessibility-icons Review semantics, keyboard behavior, focus, accessible names, PrimeIcons, and custom icons. primevue-migration Plan and apply changes using the current PrimeVue migration guides. primevue-audit-troubleshooting Find invalid APIs and troubleshoot components, setup, MCP, plugin, or duplicate configurations. Skill names use the primevue- prefix because assistants may keep skills from several plugins in one shared namespace.",
67175
67171
  sourceFile: "apps/showcase/doc/plugin/SkillsDoc.vue"
67176
67172
  },
67177
67173
  {
@@ -67743,13 +67739,13 @@ var mcp_data_default = {
67743
67739
  }
67744
67740
  ]
67745
67741
  },
67746
- contentHash: "ca9ae098367a06694d11b60c4b48598f036d62044d4593e702d97426e472b939"
67742
+ contentHash: "c0557d0ba73fd70ec7476da732330dcc7be2f75ef437182682e0e2640b50f134"
67747
67743
  };
67748
67744
 
67749
67745
  // package.json
67750
67746
  var package_default = {
67751
67747
  name: "@primevue/mcp",
67752
- version: "5.0.0-rc.3",
67748
+ version: "5.0.0-rc.4",
67753
67749
  author: "PrimeTek Informatics",
67754
67750
  description: "Model Context Protocol (MCP) server for PrimeVue component library",
67755
67751
  homepage: "https://primevue.dev",
@@ -67787,17 +67783,17 @@ var package_default = {
67787
67783
  "dist",
67788
67784
  "data",
67789
67785
  "README.md",
67790
- "LICENSE"
67786
+ "LICENSE.md"
67791
67787
  ],
67792
67788
  scripts: {
67793
67789
  build: "NODE_ENV=production INPUT_DIR=src/ OUTPUT_DIR=dist/ pnpm run build:package",
67794
67790
  "build:package": "pnpm run build:prebuild && tsup",
67795
- "build:prebuild": "node ./scripts/prebuild.mjs && node ../../apps/showcase/scripts/check-llm-docs.mjs",
67791
+ "build:prebuild": "node ./scripts/prebuild.mjs",
67796
67792
  "dev:link": "pnpm link --global && npm link",
67797
67793
  test: "pnpm run build:prebuild && vitest run --config vitest.config.ts"
67798
67794
  },
67799
67795
  dependencies: {
67800
- "@primeuix/mcp": "2.0.0-rc.1"
67796
+ "@primeuix/mcp": "2.0.0-rc.2"
67801
67797
  },
67802
67798
  devDependencies: {
67803
67799
  tsup: "^8.1.0"
@@ -67805,7 +67801,11 @@ var package_default = {
67805
67801
  engines: {
67806
67802
  node: ">=22.0.0"
67807
67803
  },
67808
- repository: {}
67804
+ repository: {
67805
+ type: "git",
67806
+ url: "git+https://github.com/primefaces/primevue-nextchapter.git",
67807
+ directory: "packages/mcp"
67808
+ }
67809
67809
  };
67810
67810
 
67811
67811
  // src/primevue-server.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@primevue/mcp",
3
- "version": "5.0.0-rc.3",
3
+ "version": "5.0.0-rc.4",
4
4
  "author": "PrimeTek Informatics",
5
5
  "description": "Model Context Protocol (MCP) server for PrimeVue component library",
6
6
  "homepage": "https://primevue.dev",
@@ -38,10 +38,10 @@
38
38
  "dist",
39
39
  "data",
40
40
  "README.md",
41
- "LICENSE"
41
+ "LICENSE.md"
42
42
  ],
43
43
  "dependencies": {
44
- "@primeuix/mcp": "2.0.0-rc.1"
44
+ "@primeuix/mcp": "2.0.0-rc.2"
45
45
  },
46
46
  "devDependencies": {
47
47
  "tsup": "^8.1.0"
@@ -49,11 +49,15 @@
49
49
  "engines": {
50
50
  "node": ">=22.0.0"
51
51
  },
52
- "repository": {},
52
+ "repository": {
53
+ "type": "git",
54
+ "url": "git+https://github.com/primefaces/primevue-nextchapter.git",
55
+ "directory": "packages/mcp"
56
+ },
53
57
  "scripts": {
54
58
  "build": "NODE_ENV=production INPUT_DIR=src/ OUTPUT_DIR=dist/ pnpm run build:package",
55
59
  "build:package": "pnpm run build:prebuild && tsup",
56
- "build:prebuild": "node ./scripts/prebuild.mjs && node ../../apps/showcase/scripts/check-llm-docs.mjs",
60
+ "build:prebuild": "node ./scripts/prebuild.mjs",
57
61
  "dev:link": "pnpm link --global && npm link",
58
62
  "test": "pnpm run build:prebuild && vitest run --config vitest.config.ts"
59
63
  }