Ontology MCP

mcp_openai_chat

Enhance text generation by integrating OpenAI ChatGPT API for natural language responses, enabling dynamic text completion and dialogue management in ontology-driven workflows.

Instructions

OpenAI ChatGPT API를 사용하여 텍스트 완성을 생성합니다

Input Schema

NameRequiredDescriptionDefault
max_tokensNo생성할 최대 토큰 수
messagesYes대화 메시지 배열
modelYes사용할 모델 (예: gpt-4, gpt-3.5-turbo)
temperatureNo샘플링 온도(0-2)

Input Schema (JSON Schema)

{ "properties": { "max_tokens": { "description": "생성할 최대 토큰 수", "type": "number" }, "messages": { "description": "대화 메시지 배열", "items": { "properties": { "content": { "type": "string" }, "role": { "enum": [ "system", "user", "assistant" ], "type": "string" } }, "required": [ "role", "content" ], "type": "object" }, "type": "array" }, "model": { "description": "사용할 모델 (예: gpt-4, gpt-3.5-turbo)", "type": "string" }, "temperature": { "description": "샘플링 온도(0-2)", "maximum": 2, "minimum": 0, "type": "number" } }, "required": [ "model", "messages" ], "type": "object" }
ID: mxvujkgabm