16 lines
428 B
YAML
16 lines
428 B
YAML
serviceName: "default"
|
|
endpoints:
|
|
# Basic endpoint for tools/call
|
|
- path: "/tools/call"
|
|
mcp_method: "tools/call"
|
|
tool_name: "tools/call"
|
|
|
|
# Example endpoint for a specific tool
|
|
- path: "/tools/image-generation"
|
|
mcp_method: "tools/call"
|
|
tool_name: "image_generation"
|
|
|
|
# Example endpoint for a custom method
|
|
- path: "/custom/method"
|
|
mcp_method: "custom.method"
|
|
tool_name: "custom_tool" |