Ollama MCP Server

create

Create a model from a Modelfile

Input Schema

NameRequiredDescriptionDefault
modelfileYesPath to Modelfile
nameYesName for the model

Input Schema (JSON Schema)

{ "additionalProperties": false, "properties": { "modelfile": { "description": "Path to Modelfile", "type": "string" }, "name": { "description": "Name for the model", "type": "string" } }, "required": [ "name", "modelfile" ], "type": "object" }