MCPConfigProvider handles MCP (Model Context Protocol) configuration Engines that support MCP servers should implement this
| 180 | // MCPConfigProvider handles MCP (Model Context Protocol) configuration |
| 181 | // Engines that support MCP servers should implement this |
| 182 | type MCPConfigProvider interface { |
| 183 | // RenderMCPConfig renders the MCP configuration for this engine to the given YAML builder |
| 184 | RenderMCPConfig(yaml *strings.Builder, tools map[string]any, mcpTools []string, workflowData *WorkflowData) error |
| 185 | } |
| 186 | |
| 187 | // LogParser handles parsing and analyzing engine logs |
| 188 | // Engines can optionally implement this to provide detailed log parsing |
no outgoing calls
no test coverage detected