Ollama MCP Server

run

Run a model

Input Schema

NameRequiredDescriptionDefault
nameYesName of the model
promptYesPrompt to send to the model
timeoutNoTimeout in milliseconds (default: 60000)

Input Schema (JSON Schema)

{ "additionalProperties": false, "properties": { "name": { "description": "Name of the model", "type": "string" }, "prompt": { "description": "Prompt to send to the model", "type": "string" }, "timeout": { "description": "Timeout in milliseconds (default: 60000)", "minimum": 1000, "type": "number" } }, "required": [ "name", "prompt" ], "type": "object" }