Skip to main content
Glama
pglevy

Design System MCP Server

by pglevy

list-categories

Retrieve all available design system categories to organize and access components, layouts, and patterns for development projects.

Instructions

List all design system categories

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The implementation of the `list-categories` MCP tool, which lists keys from `designSystemData`.
    server.tool(
      "list-categories",
      "List all design system categories",
      {},
      async () => {
        const categories = Object.keys(designSystemData);
        
        return {
          content: [
            {
              type: "text",
              text: `Available design system categories: ${categories.join(", ")}`,
            },
          ],
        };
      },
    );

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/pglevy/aurora-mcp'

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