.Github MCP Server

A Model Context Protocol (MCP) server that provides comprehensive information about React design systems, along with code generation capabilities for

Local serverstdioTypeScript

What is the .Github MCP server?

A Model Context Protocol (MCP) server that provides comprehensive information about React design systems, along with code generation capabilities for common UI patterns. Currently supports AWS Cloudscape Design System, with plans to add. The .github mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 8 defined tools rather than through you.

Its toolset

Everything the assistant can do here goes through one of these:

  • get_component_usage — Get usage guidelines for a specific component with optional section filtering
  • search_usage_guidelines — Search across component usage guidelines with query, section, and component filters
  • compare_components — Compare multiple components and their capabilities
  • generate_layout_code — Generate multi-component layouts
  • get_frontend_setup — Get setup instructions for frontend-code mode
  • get_link_resource — Resolve internal links from usage.md files to appropriate backend resources
  • cloudscape — //usage/{componentId} - Direct access to component usage guidelines in markdown format
  • Verification — 1. Restart Claude Desktop 2. Start a new conversation 3. The React Design Systems MCP server should be automatically available 4. You can use tools

Configuration

  • Node.js: 24.0.1 or higher - npm: 10.x or higher (comes with Node.js 24.0.1)

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at @agentience/react-design-systems-mcp on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

When to reach for it

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. .Github's toolset — get_component_usage, search_usage_guidelines, compare_components and 5 more — is a fair guide to whether it matches your workflow. It is maintained by agentience; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the .github mcp server does with a few real requests.

Available tools

ToolWhat it does
get_component_usageGet usage guidelines for a specific component with optional section filtering
search_usage_guidelinesSearch across component usage guidelines with query, section, and component filters
compare_componentsCompare multiple components and their capabilities
generate_layout_codeGenerate multi-component layouts
get_frontend_setupGet setup instructions for frontend-code mode
get_link_resourceResolve internal links from usage.md files to appropriate backend resources
cloudscape//usage/{componentId} - Direct access to component usage guidelines in markdown format
Verification1. Restart Claude Desktop 2. Start a new conversation 3. The React Design Systems MCP server should be automatically available 4. You can use tools like search_components to verify the connection

How to install the .Github MCP server

{
  "mcpServers": {
    "react-design-systems": {
      "command": "npx",
      "args": [
        "@agentience/react-design-systems-mcp"
      ]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Node.js: 24.0.1 or higher - npm: 10.x or higher (comes with Node.js 24.0.1)

Example prompts to try

  • Use .Github to get component usage.
  • Use .Github to search usage guidelines.
  • Use .Github to compare components.

Frequently asked questions

Currently it only supports the AWS Cloudscape Design System. Future versions plan to add Material UI, Chakra UI, Ant Design, Blueprint, and Mantine.