16 lines
462 B
YAML
16 lines
462 B
YAML
serviceName: "external"
|
|
endpoints:
|
|
# Example of an external service with specialized endpoints
|
|
- path: "/external/function"
|
|
mcp_method: "function.execute"
|
|
tool_name: "function_executor"
|
|
|
|
# Example of a webhook endpoint
|
|
- path: "/webhooks/event"
|
|
mcp_method: "webhooks.process"
|
|
tool_name: "webhook_processor"
|
|
|
|
# Example of a streaming endpoint
|
|
- path: "/stream/data"
|
|
mcp_method: "stream.data"
|
|
tool_name: "data_streamer" |