stackql-mcp 0.1.0

Embedded StackQL MCP server for Rust agentic apps - cloud queries and provisioning over SQL, served over MCP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Fetch the pinned platform .mcpb into the shared cache and print its path.
//! The producer step for vendored builds:
//!
//! ```text
//! BUNDLE=$(cargo run --example fetch_bundle)
//! STACKQL_MCP_BUNDLE_FILE=$BUNDLE cargo build -p auditron --features vendored --release
//! ```

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let path = stackql_mcp::fetch_bundle()?;
    println!("{}", path.display());
    Ok(())
}