We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/awslabs/iam-policy-autopilot'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
get_submodule_version.rs•921 B
use crate::errors::Result;
use crate::{api::model::GitSubmoduleMetadata, embedded_data::GitSubmoduleVersionInfo};
/// Gets the version information for the boto3 submodule.
///
/// # Returns
///
/// Returns the Git submodule metadata for boto3, including commit hash and version information.
///
/// # Errors
///
/// Returns an error if the boto3 version information cannot be retrieved.
pub fn get_boto3_version_info() -> Result<GitSubmoduleMetadata> {
GitSubmoduleVersionInfo::get_boto3_version_info()
}
/// Gets the version information for the botocore submodule.
///
/// # Returns
///
/// Returns the Git submodule metadata for botocore, including commit hash and version information.
///
/// # Errors
///
/// Returns an error if the botocore version information cannot be retrieved.
pub fn get_botocore_version_info() -> Result<GitSubmoduleMetadata> {
GitSubmoduleVersionInfo::get_botocore_version_info()
}