We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sbarron/AmbianceMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
simple_rust.rs•302 B
// Simple Rust test file for symbol extraction
/// Test module docstring
pub mod test_mod {
/// Test function docstring
pub fn my_func(param: &str) -> String {
format!("Hello, {}!", param)
}
}
fn main() {
let result = test_mod::my_func("World");
println!("{}", result);
}