ask_model
Query specific Ollama models for answers by submitting questions. Integrates with MCP clients to facilitate direct interaction and information retrieval from chosen models.
Instructions
Ask a question to a specific Ollama model
Args:
model: Name of the model to use (e.g., 'llama2')
question: The question to ask the model
Input Schema
Name | Required | Description | Default |
---|---|---|---|
model | Yes | ||
question | Yes |
Input Schema (JSON Schema)
{
"properties": {
"model": {
"title": "Model",
"type": "string"
},
"question": {
"title": "Question",
"type": "string"
}
},
"required": [
"model",
"question"
],
"title": "ask_modelArguments",
"type": "object"
}