run method

Future<void> run()

Connect the server to stdio transport and begin processing requests.

Implementation

Future<void> run() async {
  Logger.info('Connecting via stdio transport...');
  final transport = StdioServerTransport();
  await _server.connect(transport);
  Logger.info('Augur MCP server is running');
}