list_models
Browse and filter pre-trained AI models by dataset or type using OpenXAI MCP Server. Simplify selection for evaluating and benchmarking explanation methods.
Instructions
List available pre-trained models in OpenXAI
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dataset_name | No | Filter models by dataset they were trained on | |
| model_type | No | Filter by model type (ann, lr, rf, etc.) |
Input Schema (JSON Schema)
{
"properties": {
"dataset_name": {
"description": "Filter models by dataset they were trained on",
"type": "string"
},
"model_type": {
"description": "Filter by model type (ann, lr, rf, etc.)",
"enum": [
"ann",
"lr",
"rf",
"svm",
"xgb",
"all"
],
"type": "string"
}
},
"required": [],
"type": "object"
}