← MCP Security Catalog

Taiga UI MCP Server 0.2.3

npm · @taiga-ui/mcp · latest release

Verified with no proven findings
Security result
4
Observed tools
33
Version rating
100
Change risk

Independent inventory

Observed 2026-08-17T07:29:21.165Z using mcpSecurity-inventory. Protocol 2025-06-18.

ToolCategoryRisk
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

Resource templates 0

Prompts 0

Changes from previous version

Compared with initial baseline using full_baseline.

RiskChangeSubject
No material changes recorded.

Confirmed vulnerabilities

SeverityFindingAdvisory
No confirmed vulnerability is published for this version.

Provenance

Artifact SHA-256: a87869a27547d951f34006c520a86403d1ea5cfb58c4158e3e21e4b9ae2e9b1a

Scanner: mcp-proof-engine 0.1.0.

Let’s talk about MCP security.

Share your details and our security team will contact you.