cp
Transfer AI models between locations within the Ollama MCP Server to manage and organize local LLM resources efficiently using source and destination paths.
Instructions
Copy a model
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destination | Yes | ||
source | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"destination": {
"type": "string"
},
"source": {
"type": "string"
}
},
"required": [
"source",
"destination"
],
"type": "object"
}