Ontology MCP

mcp_openai_embedding

Generate text embeddings using the OpenAI Embeddings API to analyze and process textual data efficiently, supporting various models and dimensions.

Instructions

OpenAI Embeddings API를 사용하여 텍스트 임베딩을 생성합니다

Input Schema

NameRequiredDescriptionDefault
dimensionsNo임베딩 차원 수 (API가 지원하는 경우)
modelNo사용할 모델 (예: text-embedding-3-small, text-embedding-3-large)
textYes임베딩을 생성할 텍스트 또는 텍스트 배열

Input Schema (JSON Schema)

{ "properties": { "dimensions": { "description": "임베딩 차원 수 (API가 지원하는 경우)", "type": "number" }, "model": { "description": "사용할 모델 (예: text-embedding-3-small, text-embedding-3-large)", "type": "string" }, "text": { "description": "임베딩을 생성할 텍스트 또는 텍스트 배열", "type": [ "string", "array" ] } }, "required": [ "text" ], "type": "object" }
ID: mxvujkgabm