add logging config to audio server

add audio client
change delimiter for mcp tools from "::" to ":" to save tokens
This commit is contained in:
milan
2026-04-09 16:21:58 +02:00
parent 5def79b4ca
commit 5bf98a1efc
17 changed files with 776 additions and 35 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ async fn main() {
let router = mcp_router(&config.servers).route("/", axum::routing::get(|| async { Json(config.servers) }));
let bind_address = config.bind_address.unwrap_or(url::Url::parse("localhost:8000").unwrap());
let bind_address = config.bind_address.unwrap_or(url::Url::parse("http://localhost:8000").unwrap());
println!("binding address at {bind_address}");
let tcp_listener = tokio::net::TcpListener::bind(bind_address_format(bind_address)).await.inspect_err(|e|{