Astryx Documentation MCP Server
Astryx ドキュメント MCP サーバー & AI エージェントスキル
Meta Astryx Design System 向けの包括的な Model Context Protocol (MCP) サーバーおよび AI エージェントスキルです。このプロジェクトは、スクレイピングされたドキュメント、コンポーネント仕様、StyleX ガイド、CLI リファレンスをインデックス化し、AI アシスタントやコーディングエージェント(Claude Desktop、Cursor、Project IDX、Gemini CLI、Antigravity、Windsurf)向けに構造化されたツールとプロンプトガイドラインを公開します。
🚀 機能と MCP ツール
MCP サーバーは、stdio 上で4つのツールを公開します:
search_astryx_docs説明: Astryx のすべてのドキュメント、ガイド、コンポーネント API にわたる全文検索およびキーワード検索。
パラメータ:
query: string(例:'Button'、'defineTheme'、'StyleX'、'asChild')。
get_astryx_component説明: 特定のコンポーネントの使用ガイドライン、プロップインターフェース、インポート、コード例を取得します。
パラメータ:
componentName: string(例:'Button'、'AppShell'、'Table'、'Avatar'、'Dialog'、'Input')。
get_theme_guide説明: 6つの組み込みテーマ(Neutral、Butter、Stone、Gothic、Y2K、Matcha)、CSS 変数デザイントークン、および
defineThemeによるカスタムテーマ定義に関する情報を取得します。パラメータ:
themeName?: string(例:'butter'、'neutral'、'defineTheme')。
get_cli_commands説明:
@astryxdesign/cliとコマンド(init、doctor、template、manifest、theme build、swizzle)のドキュメント。パラメータ:
command?: string(例:'init'、'doctor'、'template'、'manifest'、'theme build'、'swizzle')。
🤖 Astryx エージェントスキル(astryx-skill)
astryx-skill/SKILL.md に配置されたこのスキルは、信頼できるコーディングパターンとルールを提供します:
サブパスインポート:
import { Button } from '@astryxdesign/core/Button';カスケードレイヤー:
@layer astryx-baseの下で@import '@astryxdesign/core/astryx.css';を強制します。StyleX オーバーライド: 任意のインラインスタイルの代わりに、
xstyleプロップを介して StyleX を使用します。テーマプロバイダー: 標準化された
<Theme mode="system" theme={neutralTheme}>の適用構造。
🌐 インタラクティブな紹介ウェブサイト
index.html にインタラクティブなプレゼンテーションウェブサイトが含まれており、次の機能を備えています:
ライブテーマエクスプローラー: 6つの Astryx デザインテーマ(Neutral、Butter、Stone、Gothic、Y2K、Matcha)をテストできます。
コンポーネントプレイグラウンド: リアルタイムの TSX コード生成を備えたインタラクティブなプロップコントロール。
MCP サーバー Stdio シミュレーター: インタラクティブな検索ツールのテストランナー。
ワンクリック公開マトリックス: GitHub Pages、Vercel、Netlify、Cloudflare Pages の簡単なセットアップ。
🛠️ はじめに
前提条件
Node.js >= 18.0.0
npm / pnpm / yarn
インストール
git clone https://github.com/georgemathunjaga/astryx-mcp-and-skill.git
cd astryx-mcp-and-skill
npm installビルドと実行
# 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🔌 AI IDE およびクライアントへの接続
1. Claude Desktop
claude_desktop_config.json に以下を追加します:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%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
プロジェクトの .cursor/mcp.json または mcp.json に追加します:
{
"mcpServers": {
"astryx-docs": {
"command": "node",
"args": ["E:/workspace/public-repos/astryx-mcp/dist/index.js"]
}
}
}📂 プロジェクト構造
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📄 ライセンス
MIT
This server cannot be installed
Maintenance
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.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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