Skip to main content
Glama

microsandbox

by microsandbox
error.rs1.33 kB
//-------------------------------------------------------------------------------------------------- // Types //-------------------------------------------------------------------------------------------------- use thiserror::Error; /// The result of a microsandbox-cli related operation. pub type MicrosandboxCliResult<T> = Result<T, MicrosandboxCliError>; /// An error that occurred during a file system operation. #[derive(pretty_error_debug::Debug, Error)] pub enum MicrosandboxCliError { /// An I/O error. #[error("io error: {0}")] Io(#[from] std::io::Error), /// Error returned from the microsandbox-server crate #[error(transparent)] Server(#[from] microsandbox_server::MicrosandboxServerError), /// Error returned from the microsandbox-core crate #[error(transparent)] Core(#[from] microsandbox_core::MicrosandboxError), /// Invalid argument #[error("invalid argument: {0}")] InvalidArgument(String), /// Not found #[error("not found: {0}")] NotFound(String), /// Process wait error #[error("process wait error: {0}")] ProcessWaitError(String), /// Configuration error #[error("configuration error: {0}")] ConfigError(String), /// Namespace operation error #[error("namespace error: {0}")] NamespaceError(String), }

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/microsandbox/microsandbox'

If you have feedback or need assistance with the MCP directory API, please join our Discord server