mcp_ollama_show
Display detailed information about a specific Ollama model by specifying its name, enabling users to retrieve metadata for better integration and utilization within the Ontology MCP server.
Instructions
Ollama 모델의 정보를 표시합니다
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | 정보를 조회할 모델 이름 |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "정보를 조회할 모델 이름",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}