MCP server intelligence profile

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

Local OnlyOfficial distributiontaiga-family
Verified cleanNpm · 0.2.3

Our scanner tested version 0.2.3 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

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

Install and connect

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

Install @taiga-ui/mcp from npm

Version 0.2.3 declares 1 executable entrypoint.

npm install --save-exact @taiga-ui/mcp@0.2.3
npx -y -p @taiga-ui/mcp@0.2.3 @taiga-ui/mcp
MCP client configuration example
{
  "mcpServers": {
    "@taiga-ui/mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "@taiga-ui/mcp@0.2.3",
        "@taiga-ui/mcp"
      ]
    }
  }
}

Identity

Canonical slugtaiga-ui-mcp-server-d10a4278DeploymentLocal Only
Canonical packagenpm:@taiga-ui/mcpRepositorytaiga-family/taiga-ui-mcp
First publishedLatest release
Last security verificationAug 17, 2026Classification confidence90%
PublicationPublishedOfficial distributionYes

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@taiga-ui/mcp0.2.31Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@taiga-ui/mcp0.2.3CurrentSep 5, 20264 toolsSucceeded · 0 resources · 0 promptsVerified clean
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

Provenanceartifact_hash_verifiedSignature
MCP SDK@modelcontextprotocol/sdk Artifact SHA-256a87869a27547d951f34006c520a86403d1ea5cfb58c4158e3e21e4b9ae2e9b1a
Scannermcp-proof-engine 0.1.0Scan completedAug 17, 2026
Security rating33 / 100Methodologyversion-rating-1.0
Executable entrypoints
[
  "@taiga-ui/mcp"
]
Rating reasons
[
  "security_policy_not_observed"
]
0Proven
86Clean
0Inconclusive
0Flaky
0Errors

Current protocol inventory

2025-06-18Negotiated protocol
taiga-ui-mcpServer-reported name
1Capability groups
Aug 17, 2026Observed

Tools 4

ToolCategoryAnnotationsRisk
get_component_exampleReturn section-related content snippets (formerly examples) for specified documentation section name(s). The presence of id indicates a successful match.
Input schema
{
  "type": "object",
  "properties": {
    "names": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 2
      },
      "minItems": 1
    }
  },
  "required": [
    "names"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string"
          },
          "id": {
            "type": "string"
          },
          "package": {
            "type": [
              "string",
              "null"
            ]
          },
          "type": {
            "type": [
              "string",
              "null"
            ]
          },
          "suggestions": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "content": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        },
        "required": [
          "query"
        ],
        "additionalProperties": false
      }
    },
    "matched": {
      "type": "number"
    }
  },
  "required": [
    "results",
    "matched"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get_list_componentsList all Taiga UI documentation section IDs (structured JSON only).
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "default": ""
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
{
  "type": "object",
  "properties": {
    "items": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "category": {
            "type": "string"
          },
          "package": {
            "type": [
              "string",
              "null"
            ]
          },
          "type": {
            "type": [
              "string",
              "null"
            ]
          }
        },
        "required": [
          "id",
          "name",
          "category",
          "package",
          "type"
        ],
        "additionalProperties": false
      }
    }
  },
  "required": [
    "items"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get_migration_guideReturns the complete Migration Guide for Taiga UI updates. Includes step-by-step migration instructions, troubleshooting, and common issues. Call this tool when you need to migrate between Taiga UI versions.
Input schema
{
  "type": "object",
  "properties": {}
}
Output schema
{
  "type": "object",
  "properties": {
    "title": {
      "type": "string"
    },
    "introduction": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "sections": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string"
          },
          "content": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "codeBlocks": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "subsections": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "title": {
                  "type": "string"
                },
                "content": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                "codeBlocks": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                }
              },
              "required": [
                "title",
                "content"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "title",
          "content"
        ],
        "additionalProperties": false
      }
    }
  },
  "required": [
    "title",
    "introduction",
    "sections"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
get_overviewCall this tool FIRST to retrieve the fully structured documentation header as JSON. Returns hierarchical sections with parsed content (no raw markdown). Includes installation instructions, critical notices, and subsections with their content and code blocks. This provides essential context before exploring specific components.
Input schema
{
  "type": "object",
  "properties": {}
}
Output schema
{
  "type": "object",
  "properties": {
    "title": {
      "type": "string"
    },
    "sections": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "criticalNotices": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "subsections": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "title": {
                  "type": "string"
                },
                "content": {
                  "type": "array",
                  "items": {
                    "type": "string"
                  }
                },
                "sections": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "section": {
                        "type": "string"
                      },
                      "code": {
                        "type": "string"
                      }
                    },
                    "required": [
                      "section"
                    ],
                    "additionalProperties": false
                  }
                },
                "items": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "title": {
                        "type": "string"
                      },
                      "content": {
                        "type": "array",
                        "items": {
                          "type": "string"
                        }
                      },
                      "code": {
                        "type": "string"
                      },
                      "sections": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "section": {
                              "type": "string"
                            },
                            "code": {
                              "type": "string"
                            }
                          },
                          "required": [
                            "section"
                          ],
                          "additionalProperties": false
                        }
                      }
                    },
                    "required": [
                      "title",
                      "content"
                    ],
                    "additionalProperties": false
                  }
                }
              },
              "required": [
                "title",
                "content"
              ],
              "additionalProperties": false
            }
          }
        },
        "required": [
          "title",
          "criticalNotices",
          "subsections"
        ],
        "additionalProperties": false
      }
    },
    "totalComponents": {
      "type": "number"
    },
    "sourceUrl": {
      "type": "string"
    }
  },
  "required": [
    "title",
    "sections",
    "totalComponents"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Taiga UI MCP Server questions

How do I install Taiga UI MCP Server?

Install the selected package version with: npm install --save-exact @taiga-ui/mcp@0.2.3

What tools does Taiga UI MCP Server provide?

Taiga UI MCP Server exposed 4 tools during independent protocol observation, including get_component_example, get_list_components, get_migration_guide, get_overview.

Is Taiga UI MCP Server secure?

Our scanner tested version 0.2.3 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP ServersMCP Servers With Completed Verification

Let’s talk about MCP security.

Share your details and our security team will contact you.