Skip to main content
Glama
georgemathunjaga

Astryx Documentation MCP Server

Astryx Documentation MCP Server & AI Agent Skill

A comprehensive Model Context Protocol (MCP) server and AI Agent Skill for the Meta Astryx Design System. This project indexes scraped documentation, component specifications, StyleX guides, and CLI references, exposing structured tools and prompt guidelines for AI assistants and coding agents (Claude Desktop, Cursor, Project IDX, Gemini CLI, Antigravity, Windsurf).


πŸš€ Features & MCP Tools

The MCP server exposes four tools over stdio:

  1. search_astryx_docs

    • Description: Full-text and keyword search across all Astryx documentation, guides, and component APIs.

    • Parameters: query: string (e.g., 'Button', 'defineTheme', 'StyleX', 'asChild').

  2. get_astryx_component

    • Description: Retrieve usage guidelines, prop interfaces, imports, and code examples for a specific component.

    • Parameters: componentName: string (e.g., 'Button', 'AppShell', 'Table', 'Avatar', 'Dialog', 'Input').

  3. get_theme_guide

    • Description: Retrieve information on the 6 built-in themes (Neutral, Butter, Stone, Gothic, Y2K, Matcha), CSS variable design tokens, and custom theme definitions with defineTheme.

    • Parameters: themeName?: string (e.g., 'butter', 'neutral', 'defineTheme').

  4. get_cli_commands

    • Description: Documentation for @astryxdesign/cli and commands (init, doctor, template, manifest, theme build, swizzle).

    • Parameters: command?: string (e.g., 'init', 'doctor', 'template', 'manifest', 'theme build', 'swizzle').


πŸ€– Astryx Agent Skill (astryx-skill)

Located in astryx-skill/SKILL.md, this skill provides authoritative coding patterns and rules:

  • Subpath Imports: import { Button } from '@astryxdesign/core/Button';

  • Cascade Layers: Enforces @import '@astryxdesign/core/astryx.css'; under @layer astryx-base.

  • StyleX Overrides: Uses StyleX via xstyle prop instead of arbitrary inline styles.

  • Theme Provider: Standardized <Theme mode="system" theme={neutralTheme}> application structure.


🌐 Interactive Intro Website

An interactive presentation website is included in index.html, featuring:

  • Live Theme Explorer: Test the 6 Astryx design themes (Neutral, Butter, Stone, Gothic, Y2K, Matcha).

  • Component Playground: Interactive prop controls with real-time TSX code generation.

  • MCP Server Stdio Simulator: Interactive search tool test runner.

  • One-Click Publishing Matrix: Simple setup for GitHub Pages, Vercel, Netlify, and Cloudflare Pages.


πŸ› οΈ Getting Started

Prerequisites

  • Node.js >= 18.0.0

  • npm / pnpm / yarn

Installation

git clone https://github.com/georgemathunjaga/astryx-mcp-and-skill.git
cd astryx-mcp-and-skill
npm install

Build & Run

# Build TypeScript and bundle crawl data to dist/
npm run build

# Start the MCP server using node (stdio)
npm start

# Run in development mode with live TypeScript compilation
npm run dev

# Run automated integration tests
npm test

πŸ”Œ Connecting to AI IDEs & Clients

1. Claude Desktop

Add the following to your claude_desktop_config.json:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "astryx-docs": {
      "command": "node",
      "args": ["E:/workspace/public-repos/astryx-mcp/dist/index.js"]
    }
  }
}

2. Google Project IDX / Gemini CLI / Cursor

Add to your project's .cursor/mcp.json or mcp.json:

{
  "mcpServers": {
    "astryx-docs": {
      "command": "node",
      "args": ["E:/workspace/public-repos/astryx-mcp/dist/index.js"]
    }
  }
}

πŸ“‚ Project Structure

astryx-mcp/
β”œβ”€β”€ astryx-skill/             # Astryx Agent Skill instructions
β”‚   β”œβ”€β”€ SKILL.md
β”‚   └── astryx-skill.md
β”œβ”€β”€ index.html                # Interactive Intro Website
β”œβ”€β”€ styles.css                # Master CSS Design System
β”œβ”€β”€ app.js                    # Interactive Website Logic & MCP Simulator
β”œβ”€β”€ dist/                     # Compiled JavaScript output & assets
β”‚   β”œβ”€β”€ index.js
β”‚   └── data/
β”‚       └── astryx_crawl.json
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ data/
β”‚   β”‚   └── astryx_crawl.json # Crawled Astryx documentation dataset
β”‚   └── index.ts              # MCP Server definition and tool handlers
β”œβ”€β”€ test/
β”‚   └── mcp-test.js           # MCP Stdio verification suite
β”œβ”€β”€ package.json
β”œβ”€β”€ tsconfig.json
└── README.md

πŸ“„ License

MIT

-
license - not tested
Not graded
quality - not tested
C
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

  • Provide your AI coding tools with token-efficient access to up-to-date technical documentation for…

  • A design-style library for AI agents: search real styles, fetch a ready-to-apply design spec.

  • Search @imqueue docs and scaffold typed services & clients from your AI coding agent.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/georgemathunjaga/astryx-mcp-and-skill'

If you have feedback or need assistance with the MCP directory API, please join our Discord server