Skip to main content
Glama
CarbonoDev

TailwindCSS MCP Server

by CarbonoDev

get_tailwind_config_guide

Get configuration guides for TailwindCSS in different frameworks like React, Vue, or Next.js to help with installation and customization.

Instructions

Get TailwindCSS configuration guides for different frameworks

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
topicNoConfiguration topic (e.g., 'installation', 'customization')
frameworkNoTarget framework (e.g., 'react', 'vue', 'nextjs')

Implementation Reference

  • The handler function for the get_tailwind_config_guide tool, which validates arguments and calls the documentationScraper service.
    private async handleGetTailwindConfigGuide(args: any): Promise<any> {
      try {
        const params = this.validateConfigGuideParams(args);
        const guide = await this.documentationScraper.getConfigGuide(params);
        return this.createSuccessResponse(guide);
      } catch (error) {
        this.handleServiceError(error, "Failed to get TailwindCSS config guide");
      }
    }
  • src/index.ts:136-150 (registration)
    The registration of the get_tailwind_config_guide tool in the MCP server setup, including its input schema.
    name: "get_tailwind_config_guide",
    description: "Get TailwindCSS configuration guides for different frameworks",
    inputSchema: {
      type: "object",
      properties: {
        topic: {
          type: "string",
          description: "Configuration topic (e.g., 'installation', 'customization')",
        },
        framework: {
          type: "string",
          description: "Target framework (e.g., 'react', 'vue', 'nextjs')",
        },
      },
      required: [],

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/CarbonoDev/tailwindcss-mcp-server'

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