get_model
Retrieve detailed information about a specific AI model from OpenAI, Anthropic, or Google using the Model Hub MCP interface for streamlined access.
Instructions
Get details of a specific model from a provider
Input Schema
Name | Required | Description | Default |
---|---|---|---|
model_id | Yes | The model ID to fetch details for | |
provider | Yes | The AI provider |
Input Schema (JSON Schema)
{
"properties": {
"model_id": {
"description": "The model ID to fetch details for",
"type": "string"
},
"provider": {
"description": "The AI provider",
"enum": [
"openai",
"anthropic",
"google"
],
"type": "string"
}
},
"required": [
"provider",
"model_id"
],
"type": "object"
}