stopServer method
Stops the MCP server
Implementation
Future<void> stopServer() async {
if (_mcpServer.isRunning) {
await _mcpServer.stop();
}
}
Stops the MCP server
Future<void> stopServer() async {
if (_mcpServer.isRunning) {
await _mcpServer.stop();
}
}