Taiga UI MCP Server
Provides AI assistants with comprehensive access to Taiga UI components, enabling retrieval of component documentation, code examples, and migration guides via four MCP tools.
README
Taiga UI MCP Server
🚀 The fastest way to integrate Taiga UI components into your AI workflow
A Model Context Protocol (MCP) server that provides AI assistants with comprehensive access to Taiga UI components. Seamlessly retrieve Taiga UI components implementations for your AI-powered development workflow.
Key Features
- Docs + code snippets. Full Taiga UI markdown plus ready Angular examples in one place.
- Four MCP tools. Get structured overview with
get_overview, discover withget_list_components, fetch examples viaget_component_example, and access migration guides withget_migration_guide. - Configurable & lightweight. Swap source URL (stable/next) without local Angular install.
Requirements
- Node.js 18 or newer
- VS Code, Cursor, Windsurf, Claude Desktop, Goose or any other MCP client
Getting started
First, install the Taiga UI MCP server with your client.
Standard config works in most of the tools:
{
"mcpServers": {
"taiga-ui": {
"command": "npx",
"args": [
"@taiga-ui/mcp@latest",
"--source-url=https://taiga-ui.dev/llms-full.txt" // or file from /next version, if you want
]
}
}
}
Tools
<details> <summary><b>Core automation</b></summary>
get_overview- Returns structured documentation header: import map (all packages and their exports), code generation checklist, CDK types reference, common mistakes, and getting started guides.
- Always call this first before using other tools — it provides critical context for correct code generation (right packages, right types, common pitfalls).
- Output: JSON with
sectionsarray (Import Map, Code Generation Checklist, CDK Types Reference, Common Mistakes, Getting Started) andtotalComponentscount.
get_overview();
{
"title": "Taiga UI - Complete Documentation",
"sections": [
{
"title": "Import Map - Package Exports Reference",
"criticalNotices": ["Always import from the correct package. This is the #1 cause of compilation errors."],
"subsections": [...]
},
{ "title": "Code Generation Checklist", "subsections": [...] },
{ "title": "CDK Types Reference", "subsections": [...] },
{ "title": "Common Mistakes", "subsections": [...] },
{
"title": "Getting Started",
"description": "Installation and setup guides",
"subsections": [
{ "title": "addons", "content": ["npm i @taiga-ui/addon-charts ..."] },
{ "title": "app-standalone", "content": ["import {TuiRoot} from '@taiga-ui/core'; ..."] },
...
]
}
],
"totalComponents": 185
}
get_list_components { query?: string }- Lists component / section identifiers (with fuzzy substring filtering) along with basic metadata (category, package, type).
- Input: optional
querystring to filter IDs (case-insensitive substring). - Output: strictly structured JSON containing
items,total.
get_list_components();
{
"items": [
{
"id": "components/Alert",
"name": "Alert",
"category": "components",
"package": "CORE",
"type": "component"
},
{
"id": "components/Button",
"package": "CORE",
"type": "component",
"name": "Button",
"category": "components"
},
...
],
}
get_component_example { "names": ["...", "..."] }- Returns full markdown content for each resolved section (entire component documentation).
- Fuzzy name resolution: exact match, path segment, suffix, substring, and
Tui*variants. - Input:
{ names: string[] }(each name length ≥ 2). - Output:
resultsarray with objects:query,id(if resolved),package,type,suggestions(only when unresolved),content(array of code blocks, if examples exist). Top-level also includesmatched(count of resolved names).
get_component_example({names: ['Alert']});
{
"results": [
{
"query": "Alert",
"id": "components/Alert",
"package": "CORE",
"type": "component",
"content": ["# components/Alert\n- **Package**: ... (full component API, usage examples, ...)"]
}
],
"matched": 1
}
get_migration_guide- Returns the complete Migration Guide for Taiga UI version updates with pre-update checklist, migration instructions via schematics, and troubleshooting for common issues.
- Use this tool when you need to migrate between Taiga UI major versions or understand the migration process.
- Input: none (no parameters required).
- Output:
title,introductionwith version info, andsectionsarray with migration guidance, code blocks for CLI commands, and solutions for common problems.
get_migration_guide();
{
"title": "Migration Guide",
"introduction": [
"**Guide to update Taiga UI v{CURRENT_MAJOR} -> v{NEXT_MAJOR}**"
],
"sections": [
{
"title": "Before You Update",
"content": [...]
},
{
"title": "Updating",
"content": [...],
"codeBlocks": [...]
},
{
"title": "Troubleshooting",
"content": [...]
}
]
}
Tip: Start with
get_overviewto get import map and common mistakes, then useget_list_componentsto discover IDs,get_component_exampleto fetch full implementation snippets, andget_migration_guidefor version upgrade guidance.
</details>
Maintained
Taiga UI MCP is a part of Taiga UI libraries family which is backed and used by a large enterprise. This means you can rely on timely support and continuous development.
Authors
<table> <tr> <td align="center"> <a href="https://github.com/vladimirpotekhin" ><img src="https://github.com/vladimirpotekhin.png?size=200" width="100" style="margin-bottom: -4px; border-radius: 8px;" alt="Vladimir Potekhin" /><br /><b>Vladimir Potekhin</b></a > <div style="margin-top: 4px"> <a href="https://twitter.com/v_potekhin" title="Twitter" ><img width="16" src="https://raw.githubusercontent.com/MarsiBarsi/readme-icons/main/twitter.svg" /></a> <a href="https://github.com/vladimirpotekhin" title="GitHub" ><img width="16" src="https://raw.githubusercontent.com/MarsiBarsi/readme-icons/main/github.svg" /></a> <a href="https://t.me/v_potekhin" title="Telegram" ><img width="16" src="https://raw.githubusercontent.com/MarsiBarsi/readme-icons/main/send.svg" /></a> </div> </td> <td align="center"> <a href="https://github.com/mdlufy" ><img src="https://github.com/mdlufy.png?size=200" width="100" style="margin-bottom: -4px; border-radius: 8px;" alt="German Panov" /><br /><b>German Panov</b></a > <div style="margin-top: 4px"> <a href="https://twitter.com/mdlufy_" title="Twitter" ><img width="16" src="https://raw.githubusercontent.com/MarsiBarsi/readme-icons/main/twitter.svg" /></a> <a href="https://github.com/mdlufy" title="GitHub" ><img width="16" src="https://raw.githubusercontent.com/MarsiBarsi/readme-icons/main/github.svg" /></a> <a href="https://t.me/mdlufy" title="Telegram" ><img width="16" src="https://raw.githubusercontent.com/MarsiBarsi/readme-icons/main/send.svg" /></a> </div> </td> </tr> </table>
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.