Create the connection context based on connection type.
(self)
| 19 | |
| 20 | @abstractmethod |
| 21 | def _create_context(self): |
| 22 | """Create the connection context based on connection type.""" |
| 23 | |
| 24 | async def __aenter__(self): |
| 25 | """Initialize MCP server connection.""" |