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
| Name | Required | Description | Default |
|---|---|---|---|
| topic | No | Configuration topic (e.g., 'installation', 'customization') | |
| framework | No | Target framework (e.g., 'react', 'vue', 'nextjs') |
Implementation Reference
- src/index.ts:425-433 (handler)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: [],