MCPServer constructor

MCPServer({
  1. int port = 3001,
  2. String host = 'localhost',
})

Implementation

MCPServer({int port = 3001, String host = 'localhost'})
  : _port = port,
    _host = host;