MCPServer constructor

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

Implementation

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