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#"
} | — | | — |