mcp_ollama_rm
Remove Ollama models by name within the Ontology MCP server to manage and optimize AI model storage and performance for ontology data interactions.
Instructions
Ollama 모델을 삭제합니다
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | 삭제할 모델 이름 |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "삭제할 모델 이름",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}