Ontology MCP

mcp_ollama_chat_completion

Generate responses using an OpenAI-compatible chat completion API, enabling structured conversations and query handling with Ollama models for ontology data integration.

Instructions

OpenAI 호환 채팅 완성 API를 사용하여 응답을 생성합니다

Input Schema

NameRequiredDescriptionDefault
messagesYes대화 메시지 배열
modelYes사용할 Ollama 모델 이름
temperatureNo샘플링 온도(0-2)
timeoutNo타임아웃(밀리초 단위, 기본값: 60000)

Input Schema (JSON Schema)

{ "properties": { "messages": { "description": "대화 메시지 배열", "items": { "properties": { "content": { "type": "string" }, "role": { "enum": [ "system", "user", "assistant" ], "type": "string" } }, "required": [ "role", "content" ], "type": "object" }, "type": "array" }, "model": { "description": "사용할 Ollama 모델 이름", "type": "string" }, "temperature": { "description": "샘플링 온도(0-2)", "maximum": 2, "minimum": 0, "type": "number" }, "timeout": { "description": "타임아웃(밀리초 단위, 기본값: 60000)", "minimum": 1000, "type": "number" } }, "required": [ "model", "messages" ], "type": "object" }
ID: mxvujkgabm