list_models
Retrieve all available models for a specified LLM provider (e.g., OpenAI, Anthropic, Google Gemini) through the Just Prompt MCP server, enabling efficient model selection.
Instructions
List all available models for a specific LLM provider
Input Schema
Name | Required | Description | Default |
---|---|---|---|
provider | Yes | Provider to list models for (e.g., 'openai' or 'o') |
Input Schema (JSON Schema)
{
"properties": {
"provider": {
"description": "Provider to list models for (e.g., 'openai' or 'o')",
"title": "Provider",
"type": "string"
}
},
"required": [
"provider"
],
"title": "ListModelsSchema",
"type": "object"
}