use clap::Parser;
use rust_mcp_filesystem::{cli, server};
#[tokio::main]
async fn main() {
let arguments = cli::CommandArguments::parse();
if let Err(err) = arguments.validate() {
eprintln!("Error: {err}");
return;
};
if let Err(error) = server::start_server(arguments).await {
eprintln!("{error}");
}
}
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rust-mcp-stack/rust-mcp-filesystem'
If you have feedback or need assistance with the MCP directory API, please join our Discord server