
taiga-ui-mcp
by taiga-family·★ 13·Score 42
MCP server providing Taiga UI documentation, component examples, and migration guides for Angular development.
Overview
The Taiga UI MCP server offers comprehensive access to Taiga UI components through four distinct tools: get_overview provides structured documentation headers and critical context; get_list_components allows component discovery with filtering; get_component_example delivers full documentation with code snippets; and get_migration_guide offers version upgrade assistance. This server enables AI assistants to efficiently retrieve and utilize Taiga UI components without requiring local Angular installation.
Try asking AI
After installing, here are 6 things you can ask your AI assistant:
When to choose this
Choose this MCP server if you're working with Angular and Taiga UI components and need AI-assisted access to documentation, code examples, and migration guides within your development workflow.
When NOT to choose this
Avoid this if you're not using Angular or Taiga UI, as it provides specialized functionality specific to this UI library ecosystem.
Tools this server exposes
4 tools extracted from the READMEget_overview()Returns structured documentation header with import map, code generation checklist, and getting started guides
get_list_components(query?: string)Lists component identifiers with fuzzy filtering and basic metadata
get_component_example({ names: string[] })Returns full markdown content for specified components with fuzzy name resolution
get_migration_guide()Returns the complete Migration Guide for Taiga UI version updates
Comparable tools
Installation
Installation
Install the Taiga UI MCP server using npm:
npm install -g @taiga-ui/mcpClaude Desktop Configuration
Add to your claude_desktop_config.json:
{
"mcpServers": {
"taiga-ui": {
"command": "npx",
"args": [
"@taiga-ui/mcp@latest",
"--source-url=https://taiga-ui.dev/llms-full.txt"
]
}
}
}VS Code/Cursor/Windsurf Configuration
Add to your settings:
{
"mcpServers": {
"taiga-ui": {
"command": "npx",
"args": [
"@taiga-ui/mcp@latest",
"--source-url=https://taiga-ui.dev/llms-full.txt"
]
}
}
}FAQ
- What source URL options are available?
- You can use 'https://taiga-ui.dev/llms-full.txt' for the stable version or a file from the /next version if you want bleeding-edge documentation.
- How many Taiga UI components are documented?
- The documentation includes 185 components as of the latest version, with comprehensive code examples and usage guidelines.
- What MCP clients are supported?
- The server supports VS Code, Cursor, Windsurf, Claude Desktop, Goose, and any other MCP client that follows the MCP protocol.
Compare taiga-ui-mcp with
Last updated · Auto-generated from public README + GitHub signals.