MCP server intelligence profile

MCP Tailwind Gemini Server MCP Server

Advanced Model Context Protocol server that integrates Gemini AI with Tailwind CSS, providing intelligent component generation, class optimization, and cross-platform design assistance across major development environments

Local OnlyTai-DT
Awaiting current scanSource Git · 351f2ae2df7435ede3588e077ef546c9ccfacb6f

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
10Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

No verified installation or connection method is available in the retained evidence yet.

Identity

Canonical slugmcp-tailwind-gemini-server-7f828bc6DeploymentLocal Only
Canonical packageRepositoryTai-DT/mcp-tailwind-gemini
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
source_gittai-dt/mcp-tailwind-gemini351f2ae2df7435ede3588e077ef546c9ccfacb6f1Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
source_gittai-dt/mcp-tailwind-gemini351f2ae2df7435ede3588e077ef546c9ccfacb6fCurrentAug 25, 202610 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
mcp-tailwind-geminiServer-reported name
1Capability groups
Aug 25, 2026Observed

Tools 10

ToolCategoryAnnotationsRisk
analyze_designAnalyze design with AI for improvements and best practices
Input schema
{
  "type": "object",
  "properties": {
    "html": {
      "type": "string",
      "description": "HTML code to analyze"
    },
    "css": {
      "type": "string",
      "description": "Additional CSS code (optional)"
    },
    "context": {
      "type": "string",
      "description": "Design context or purpose"
    },
    "checkAccessibility": {
      "type": "boolean",
      "default": true,
      "description": "Check accessibility compliance"
    },
    "checkResponsive": {
      "type": "boolean",
      "default": true,
      "description": "Check responsive design"
    },
    "checkPerformance": {
      "type": "boolean",
      "default": true,
      "description": "Check performance implications"
    }
  },
  "required": [
    "html"
  ]
}
convert_to_tailwindConvert CSS/SCSS to Tailwind classes
Input schema
{
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "CSS, SCSS, or HTML with styles to convert"
    },
    "format": {
      "type": "string",
      "enum": [
        "css",
        "scss",
        "html"
      ],
      "description": "Input format"
    },
    "preserveCustom": {
      "type": "boolean",
      "default": false,
      "description": "Preserve custom properties that cannot be converted"
    },
    "optimize": {
      "type": "boolean",
      "default": true,
      "description": "Optimize the converted classes"
    }
  },
  "required": [
    "code",
    "format"
  ]
}
create_layoutGenerate responsive layouts with Tailwind CSS
Input schema
{
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "dashboard",
        "landing",
        "blog",
        "ecommerce",
        "portfolio",
        "documentation"
      ],
      "description": "Layout type"
    },
    "sections": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Layout sections (header, sidebar, main, footer, etc.)"
    },
    "complexity": {
      "type": "string",
      "enum": [
        "simple",
        "medium",
        "complex"
      ],
      "default": "medium",
      "description": "Layout complexity"
    },
    "framework": {
      "type": "string",
      "enum": [
        "html",
        "react",
        "vue",
        "svelte"
      ],
      "default": "html",
      "description": "Target framework"
    }
  },
  "required": [
    "type",
    "sections"
  ]
}
create_projectCreate a complete project with Vite + Tailwind + shadcn/ui setup
Input schema
{
  "type": "object",
  "properties": {
    "projectName": {
      "type": "string",
      "description": "Name of the project"
    },
    "framework": {
      "type": "string",
      "enum": [
        "react",
        "vue",
        "svelte"
      ],
      "default": "react",
      "description": "Framework to use"
    },
    "typescript": {
      "type": "boolean",
      "default": true,
      "description": "Use TypeScript"
    },
    "components": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Initial shadcn/ui components to include"
    },
    "template": {
      "type": "string",
      "enum": [
        "basic",
        "dashboard",
        "landing",
        "blog",
        "auth"
      ],
      "default": "basic",
      "description": "Project template"
    }
  },
  "required": [
    "projectName"
  ]
}
create_themeGenerate custom Tailwind theme with AI assistance
Input schema
{
  "type": "object",
  "properties": {
    "brandColor": {
      "type": "string",
      "description": "Primary brand color (hex, rgb, or color name)"
    },
    "style": {
      "type": "string",
      "enum": [
        "minimal",
        "modern",
        "classic",
        "bold",
        "elegant"
      ],
      "default": "modern",
      "description": "Design style"
    },
    "colorCount": {
      "type": "number",
      "default": 9,
      "minimum": 5,
      "maximum": 11,
      "description": "Number of color shades to generate"
    },
    "includeConfig": {
      "type": "boolean",
      "default": true,
      "description": "Generate tailwind.config.js"
    },
    "typography": {
      "type": "boolean",
      "default": true,
      "description": "Include typography scale"
    },
    "spacing": {
      "type": "boolean",
      "default": true,
      "description": "Include custom spacing scale"
    }
  },
  "required": [
    "brandColor"
  ]
}
generate_componentGenerate Tailwind CSS components with AI assistance using Gemini
Input schema
{
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "Description of the component to generate"
    },
    "type": {
      "type": "string",
      "enum": [
        "button",
        "card",
        "form",
        "navigation",
        "modal",
        "table",
        "custom"
      ],
      "description": "Type of component"
    },
    "framework": {
      "type": "string",
      "enum": [
        "html",
        "react",
        "vue",
        "svelte",
        "angular"
      ],
      "default": "react",
      "description": "Target framework"
    },
    "variant": {
      "type": "string",
      "enum": [
        "primary",
        "secondary",
        "outline",
        "ghost",
        "link"
      ],
      "default": "primary",
      "description": "Component variant"
    },
    "size": {
      "type": "string",
      "enum": [
        "xs",
        "sm",
        "md",
        "lg",
        "xl"
      ],
      "default": "md",
      "description": "Component size"
    },
    "theme": {
      "type": "string",
      "enum": [
        "light",
        "dark",
        "auto"
      ],
      "default": "light",
      "description": "Theme preference"
    },
    "useShadcn": {
      "type": "boolean",
      "default": true,
      "description": "Use shadcn/ui components as base"
    },
    "responsive": {
      "type": "boolean",
      "default": true,
      "description": "Make component responsive"
    },
    "accessibility": {
      "type": "boolean",
      "default": true,
      "description": "Include accessibility features"
    }
  },
  "required": [
    "description",
    "type"
  ]
}
generate_previewGenerate visual preview of Tailwind components
Input schema
{
  "type": "object",
  "properties": {
    "html": {
      "type": "string",
      "description": "HTML code to preview"
    },
    "width": {
      "type": "number",
      "default": 800,
      "description": "Preview width in pixels"
    },
    "height": {
      "type": "number",
      "default": 600,
      "description": "Preview height in pixels"
    },
    "darkMode": {
      "type": "boolean",
      "default": false,
      "description": "Generate dark mode preview"
    },
    "responsive": {
      "type": "boolean",
      "default": false,
      "description": "Generate responsive breakpoint previews"
    }
  },
  "required": [
    "html"
  ]
}
get_shadcn_componentGet shadcn/ui component source code and usage examples
Input schema
{
  "type": "object",
  "properties": {
    "componentName": {
      "type": "string",
      "description": "Name of the shadcn/ui component (e.g., \"button\", \"card\", \"form\")"
    },
    "includeDemo": {
      "type": "boolean",
      "default": true,
      "description": "Include usage examples"
    },
    "framework": {
      "type": "string",
      "enum": [
        "react",
        "svelte"
      ],
      "default": "react",
      "description": "Framework to get component for"
    }
  },
  "required": [
    "componentName"
  ]
}
optimize_classesOptimize and clean up Tailwind CSS classes
Input schema
{
  "type": "object",
  "properties": {
    "html": {
      "type": "string",
      "description": "HTML with Tailwind classes to optimize"
    },
    "removeRedundant": {
      "type": "boolean",
      "default": true,
      "description": "Remove redundant classes"
    },
    "mergeConflicts": {
      "type": "boolean",
      "default": true,
      "description": "Resolve conflicting classes"
    },
    "suggestAlternatives": {
      "type": "boolean",
      "default": true,
      "description": "Suggest better alternatives"
    }
  },
  "required": [
    "html"
  ]
}
suggest_improvementsGet AI-powered suggestions for design improvements
Input schema
{
  "type": "object",
  "properties": {
    "html": {
      "type": "string",
      "description": "HTML code to analyze"
    },
    "context": {
      "type": "string",
      "description": "Context about the design goals"
    },
    "targetAudience": {
      "type": "string",
      "description": "Target audience for the design"
    },
    "focusAreas": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "accessibility",
          "performance",
          "ux",
          "aesthetics",
          "responsiveness"
        ]
      },
      "description": "Areas to focus improvements on"
    }
  },
  "required": [
    "html"
  ]
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

MCP Tailwind Gemini Server MCP Server questions

How do I install MCP Tailwind Gemini Server MCP Server?

No verified package installation command is available in the retained catalog evidence.

What tools does MCP Tailwind Gemini Server MCP Server provide?

MCP Tailwind Gemini Server MCP Server exposed 10 tools during independent protocol observation, including analyze_design, convert_to_tailwind, create_layout, create_project, create_theme, generate_component, generate_preview, get_shadcn_component, and others.

Is MCP Tailwind Gemini Server MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Google intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.