Plasma is Coveo's design system used in Coveo Cloud Administration Console. It provides a Mantine-themed component library, design tokens, React icons, and documentation. All components and their documentation are available in the demo page.
npm install @coveord/plasma-mantine @mantine/core @mantine/hooks react react-domWrap your application with the Plasmantine provider — it applies the Plasma theme on top of Mantine, so you don't need a separate MantineProvider:
import {Plasmantine} from '@coveord/plasma-mantine/plasmantine';
import '@mantine/core/styles.css';
function App() {
return <Plasmantine>{/* your app */}</Plasmantine>;
}Import invariant: always import from
@coveord/plasma-mantine, even when Mantine docs were the reference source.
Each package documents its own installation and usage in its README:
| Package | Purpose |
|---|---|
@coveord/plasma-mantine |
Mantine-themed component library (main package) |
@coveord/plasma-tokens |
Design tokens (colors, typography, spacing, icons, …) |
@coveord/plasma-react-icons |
Plasma iconography as React components |
@coveord/plasma-llms |
LLM-friendly component documentation |
@coveord/plasma-mcp-server |
MCP server exposing Plasma docs to AI agents |
- React — requires React 19.2 or later (
reactandreact-dom). - Mantine — built for Mantine 9 (
@mantine/coreand@mantine/hooksare required peer dependencies). Optional Mantine packages (@mantine/notifications,@mantine/dates,@mantine/form,@mantine/modals,@mantine/carousel,@mantine/code-highlight) are also on the9.xline — install the ones you use. - TypeScript — ships its own type declarations; no
@typespackage needed. - Modules — distributed as ES modules (
"type": "module"); use a bundler or a Node.js version that supports ESM.
For the best agent experience, combine the Plasma skill with both documentation MCP servers. They serve complementary purposes:
- Plasma skill: persistent setup, import, and documentation lookup conventions
- Plasma MCP: authoritative on-demand Plasma-specific props, sub-components, usage, and content guidelines
- Mantine MCP: on-demand fallback for re-exported components and inherited props
Use both the skill and MCP servers when the client supports them. The skill uses static @coveord/plasma-llms files only as a fallback when MCP is unavailable.
Import invariant: always import from
@coveord/plasma-mantine, even when Mantine docs were the reference source.
Claude Code
Step 1: Install the Plasma skill. Save the Plasma skill as .claude/skills/plasma/SKILL.md in your project.
Step 2: Configure the MCP servers. Add both servers to a project-scoped .mcp.json at your repository root (commit it to share the setup with your team):
{
"mcpServers": {
"plasma": {
"command": "npx",
"args": ["-y", "@coveord/plasma-mcp-server"]
},
"mantine": {
"command": "npx",
"args": ["-y", "@mantine/mcp-server"]
}
}
}Or add them from the CLI:
claude mcp add plasma -- npx -y @coveord/plasma-mcp-server
claude mcp add mantine -- npx -y @mantine/mcp-serverRun /mcp inside Claude Code to verify both servers are connected.
Opencode
Step 1: Install the Plasma skill. Save the Plasma skill as .opencode/skills/plasma/SKILL.md in your project.
Step 2: Configure the MCP servers. Add both servers to your Opencode config (opencode.json at your repository root, or ~/.config/opencode/opencode.json for all projects):
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"plasma": {
"type": "local",
"command": ["npx", "-y", "@coveord/plasma-mcp-server"],
"enabled": true
},
"mantine": {
"type": "local",
"command": ["npx", "-y", "@mantine/mcp-server"],
"enabled": true
}
}
}GitHub Copilot CLI
Step 1: Install the Plasma skill. Load it in the terminal:
/skill https://plasma.coveo.com/plasma-skill.md
Step 2: Configure the MCP servers. Add both servers from the terminal:
copilot mcp add plasma -- npx -y @coveord/plasma-mcp-server
copilot mcp add mantine -- npx -y @mantine/mcp-serverThe CLI also reads shared workspace MCP configuration from .mcp.json.
GitHub Copilot in VS Code (agent mode)
Step 1: Install the Plasma skill. Save the Plasma skill as .github/skills/plasma/SKILL.md in your project.
Step 2: Configure the MCP servers. Create .vscode/mcp.json in your project:
{
"servers": {
"plasma": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@coveord/plasma-mcp-server"]
},
"mantine": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@mantine/mcp-server"]
}
}
}Kiro
Step 1: Install the Plasma skill as steering. Create .kiro/steering/plasma.md, paste the contents of https://plasma.coveo.com/plasma-skill.md, and replace its frontmatter with:
---
inclusion: always
---Step 2: Configure the MCP servers. Create .kiro/settings/mcp.json in your project:
{
"mcpServers": {
"plasma": {
"command": "npx",
"args": ["-y", "@coveord/plasma-mcp-server"]
},
"mantine": {
"command": "npx",
"args": ["-y", "@mantine/mcp-server"]
}
}
}Codex CLI
Step 1: Install the Plasma skill. Save the Plasma skill as .agents/skills/plasma/SKILL.md in your project.
Step 2: Configure the MCP servers. Add both servers to ~/.codex/config.toml (global) or .codex/config.toml (project):
[mcp_servers.plasma]
command = "npx"
args = ["-y", "@coveord/plasma-mcp-server"]
[mcp_servers.mantine]
command = "npx"
args = ["-y", "@mantine/mcp-server"]See CONTRIBUTING.md for how to set up the repo, run the demo, test, and open a pull request. AI coding agents should read AGENTS.md.
@coveord/plasma-styleand@coveord/plasma-reactare in maintenance mode and live on thev53branch.
See CONTRIBUTING.md for the changeset format (title rules, per-bump requirements, and examples). You can scaffold a pre-filled changeset with pnpm changeset:new and check it with pnpm changeset:validate.
All packages under this repository are distributed under Apache 2.0 license.