We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DevMan57/voiceblitz-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
build.rs•516 B
fn main() {
// Embed Windows resources (icon) into the executable
#[cfg(windows)]
{
let mut res = winres::WindowsResource::new();
res.set_icon("assets/Microphone.ico");
res.set("ProductName", "LocalVoiceMode");
res.set("FileDescription", "Voice interface with waveform visualization");
res.set("LegalCopyright", "MIT License");
if let Err(e) = res.compile() {
eprintln!("Warning: Failed to compile Windows resources: {}", e);
}
}
}