Add an MCP server with the compact object-shaped API.
(&self, py: Python<'_>, config: &Bound<'_, PyDict>)
| 2617 | |
| 2618 | /// Add an MCP server with the compact object-shaped API. |
| 2619 | fn add_mcp(&self, py: Python<'_>, config: &Bound<'_, PyDict>) -> PyResult<usize> { |
| 2620 | self.add_mcp_server_config(py, config) |
| 2621 | } |
| 2622 | |
| 2623 | /// Dynamically register agents from a directory with the live session. |
| 2624 | /// |
nothing calls this directly
no test coverage detected