19 lines
513 B
YAML
19 lines
513 B
YAML
serviceName: "advanced"
|
|
endpoints:
|
|
# API endpoints for a more complex service
|
|
- path: "/api/v1/chat/completions"
|
|
mcp_method: "chat.completions"
|
|
tool_name: "chat_completions"
|
|
|
|
- path: "/api/v1/embeddings"
|
|
mcp_method: "embeddings.create"
|
|
tool_name: "embeddings"
|
|
|
|
- path: "/api/v1/models"
|
|
mcp_method: "models.list"
|
|
tool_name: "models"
|
|
|
|
# Versioned endpoints
|
|
- path: "/api/v2/chat/completions"
|
|
mcp_method: "chat.completions.v2"
|
|
tool_name: "chat_completions_v2" |