nemo-relay-cli 0.7.2

Coding-agent gateway CLI for NeMo Relay observability.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// SPDX-FileCopyrightText: Copyright (c) 2026, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

use std::process::ExitCode;

use super::serve::ServerArgs;
use crate::error::CliError;

pub(super) async fn execute(server: &ServerArgs) -> Result<ExitCode, CliError> {
    crate::mcp::run(&server.to_runtime()).await
}