model_get

Management

Get Model

Get full details for one model (deprecated capabilities filtered). The long markdown description is NOT in the base record (it only carries the one-line shortDescription) — set include_description=true on the FIRST call whenever the user asks for a model's description, full description, documentation, or usage notes. Args: - model_id: required - include_description: set true when the user wants the model's description/documentation — fetches the long markdown description alongside the record - team_id, project_id: required for OAuth callers Returns: the full model record with deprecated capabilities (controlnet*, *ip_adapter*) filtered. With include_description, the record additionally carries `description` (markdown) when one exists. Examples: - "Get this model" -> model_id="model_xxx" - "Give me the full description of this model" -> model_id="model_xxx", include_description=true
read-onlyidempotentopen-world

Parameters

NameTypeRequiredDescription
model_idstringModel ID.
include_descriptionbooleanSet true whenever the user asks for the model's description, full description, documentation, or usage notes — the base record only carries the one-line shortDescription; the long markdown description requires this flag. Off by default.
team_idstringTeam ID. Required if user belongs to multiple teams.
project_idstringProject ID to scope the operation to.
response_formatenum(json | markdown)jsonOutput format: 'json' for structured data, 'markdown' for human-readable text.