npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@optiaxiom/mcp

v0.2.4

Published

MCP server for Axiom Design System - enables AI assistants to generate accurate Axiom code

Downloads

555

Readme

@optiaxiom/mcp

MCP (Model Context Protocol) server for Axiom Design System. This server enables AI assistants like Claude Code and Cursor to access accurate component metadata, generating better code using the Axiom design system.

What is MCP?

Model Context Protocol (MCP) is an open protocol by Anthropic that allows AI assistants to securely connect to external data sources and tools. This MCP server exposes Axiom's component library metadata to AI coding assistants.

Features

  • Component Metadata: Detailed information about all Axiom components including props, types, and descriptions
  • Search & Discovery: Find components by name, keywords, or category
  • Usage Patterns: Real-world code examples showing how components work together
  • Design Tokens: Access to the complete design token system for Figma-to-code workflows
  • Setup Guides: Markdown guides for getting started, CSS configuration, and icon usage
  • Fast & Lightweight: Pre-generated metadata with instant response times

Important Note

All Axiom components are installed via a single npm package: @optiaxiom/react

Installation

Global Installation

npm install -g @optiaxiom/mcp
# or
pnpm add -g @optiaxiom/mcp

Project Installation

npm install --save-dev @optiaxiom/mcp
# or
pnpm add -D @optiaxiom/mcp

Usage

Claude Code

Add the MCP server to your workspace configuration file at .vscode/mcp.json:

{
  "servers": {
    "axiom": {
      "command": "npx",
      "args": ["-y", "@optiaxiom/mcp"]
    }
  }
}

Cursor

Add to your Cursor MCP configuration:

{
  "mcpServers": {
    "axiom": {
      "command": "npx",
      "args": ["-y", "@optiaxiom/mcp"]
    }
  }
}

Standalone Usage

You can also run the server directly:

npx @optiaxiom/mcp

Available Tools

The MCP server provides the following tools that AI assistants can use:

get_component

Get information about an Axiom component. Returns the component's description, import statement, and sub-components by default — no props. Use the optional props parameter to search for specific props by name or description.

Parameters:

  • name (string, required): Component name (e.g., "Badge", "Button", "Alert")
  • props (string, optional): Search query to find specific props by name or description (e.g., "appearance size", "loading", "padding background"). Omit to get just the component description, import, and sub-components without any props.

Returns: Component metadata with description, import statement, sub-components, examples, and optionally matching prop definitions.

search_components

Search Axiom components by name, description, or keywords. Returns matching components.

Parameters:

  • query (string, optional): Search query (component name, keyword, or description). Leave empty to browse all components or all components in a category.
  • category (string, optional): Filter by category (e.g., "form", "layout", "navigation", "feedback", "overlay", "data-display", "actions", "typography")
  • limit (number, optional): Maximum results to return (default: 5)

Returns: List of matching components with names, descriptions, and import statements.

get_patterns

Find usage examples showing how Axiom components work together. Returns real working examples from the docs that demonstrate component composition patterns.

Parameters:

  • components (string, required): Space-separated component names to find patterns for (e.g., "Field Input Button"). Returns examples that use these components together.
  • query (string, optional): Search within example titles to find specific patterns (e.g., "addon", "form", "disabled").
  • limit (number, optional): Maximum number of examples to return (default: 5, max: 10)

Returns: Array of matching examples with code (filename → file contents) and title.

get_tokens

Get design token mappings for the Axiom Design System.

Parameters:

  • categories (string[], optional): Filter to specific token categories (e.g., ["colors", "boxShadow"]). Returns all categories if omitted. Valid values: borderRadius, boxShadow, colors, duration, fontFamily, fontSize, maxSize, size, zIndex.

Returns: Token-to-value mappings for the requested categories. Useful for converting Figma design values to semantic tokens (e.g., #4F576Efg.secondary, 32px height → h='md').

search_icons

Search for icons from the @optimizely/axiom-icons package.

Parameters:

  • query (string, required): Search query (icon keyword or name, e.g., "message", "arrow", "user")
  • limit (number, optional): Maximum results to return (default: 10)

Returns: List of matching icon components with names and import statements.

Available Resources

The MCP server exposes resources that can be accessed via URI patterns:

Component Resources

  • URI Pattern: axiom://component/{name}
  • MIME Type: application/json
  • Description: Metadata for individual Axiom components

Example: axiom://component/Button returns the complete metadata for the Button component.

Guide Resources

  • URI Pattern: axiom://guide/{name}
  • MIME Type: text/markdown
  • Description: Setup and configuration guides for Axiom Design System

Available guides:

  • axiom://guide/getting-started - Installation and setup
  • axiom://guide/css-imports - CSS import configuration
  • axiom://guide/css-layers - CSS cascade layers setup
  • axiom://guide/icons - Icon usage and configuration

Example Interactions

Once configured, you can ask your AI assistant:

  • "Show me how to use the Badge component"
  • "Search for form components"
  • "Create a form with Input and Button components from Axiom"
  • "What navigation components are available?"
  • "Show me patterns for Field and Select together"
  • "What design tokens are available for colors?"
  • "Convert this Figma color #4F576E to an Axiom token"
  • "Show me the getting started guide for Axiom"
  • "Search for message icons" (Optimizely staff only)
  • "Find arrow icons" (Optimizely staff only)

The AI assistant will use the MCP server to get accurate, up-to-date information about Axiom components, tokens, and setup instructions.

Development

Building

pnpm -F mcp... build

Architecture

Component Metadata Generation

The MCP server serves pre-generated component metadata that is automatically extracted from the @optiaxiom/react package at build time:

  • Component descriptions come from JSDoc comments on component exports (e.g., packages/react/src/table/Table.tsx)
  • Props and types are extracted from TypeScript definitions
  • Examples are pulled from demo files in apps/docs/demos/
  • Usage warnings are embedded in JSDoc and automatically included in the description field
  • Grouping and versioning use JSDoc tags (@group and @since)

All data is bundled into the published package — there is no filesystem or network I/O at runtime.

Important: When adding warnings or guidance about component usage, add them to the component's JSDoc comment rather than the MCP server code. This ensures the information is:

  • Visible in IDEs (hover tooltips)
  • Included in generated documentation
  • Automatically served by the MCP server
  • Maintained in a single source of truth

JSDoc Tags

Use these tags in component JSDoc comments:

  • @group: Groups related components together (e.g., @group Table groups Table, TableRow, TableCell, etc.)
  • @since: Documents the version when the component was introduced (e.g., @since 1.4.0)
  • @experimental: Marks components as experimental/unstable

Example:

/**
 * Display tabular data using rows and columns.
 *
 * @group Table
 * @since 1.4.0
 */
export const Table = ...

Resources

Contributing

Contributions are welcome! Please see the main repository for contribution guidelines.

License

Apache-2.0

Support

For issues and questions: