Skip to main content

mcp_credentials_vault/
lib.rs

1//! # Credentials Vault MCP Server
2//!
3//! Provides scoped, auditable credential access for ADK-Rust Enterprise agents.
4//! No raw secrets are ever exposed to LLM context.
5
6pub mod backend;
7pub mod error;
8pub mod types;
9
10#[cfg(feature = "hashicorp")]
11pub mod hashicorp;
12
13#[cfg(feature = "aws")]
14pub mod aws;
15
16#[cfg(feature = "gcp")]
17pub mod gcp;
18
19#[cfg(feature = "azure")]
20pub mod azure;
21
22#[cfg(feature = "adk-vault")]
23pub mod adk_vault;
24
25#[cfg(feature = "adk-platform")]
26pub mod adk_platform;
27
28pub mod server;
29
30pub use backend::VaultBackend;
31pub use error::VaultError;
32pub use types::*;