get-model-info
Retrieve detailed metadata about a specific machine learning model by providing its ID, such as architecture, usage, and associated resources, via the Hugging Face MCP Server.
Instructions
Get detailed information about a specific model
Input Schema
Name | Required | Description | Default |
---|---|---|---|
model_id | Yes | The ID of the model (e.g., 'google/bert-base-uncased') |
Input Schema (JSON Schema)
{
"properties": {
"model_id": {
"description": "The ID of the model (e.g., 'google/bert-base-uncased')",
"type": "string"
}
},
"required": [
"model_id"
],
"type": "object"
}