Skip to main content
Glama

tfmcp

by nwiizo
# Rust Architecture Guidelines ## Project Structure - Follow the modular structure in `src/`: - `core/`: Core tfmcp functionality and abstractions - `mcp/`: Model Context Protocol implementation - `terraform/`: Terraform integration services - `config/`: Configuration handling - `shared/`: Shared utilities ## Module Organization - Each module should have a clear, single responsibility. - Public APIs should be exposed through the module's `mod.rs` or `lib.rs`. - Keep implementation details private whenever possible. - Use feature flags for optional functionality. ## Dependencies - Be conservative with external dependencies. - Evaluate new dependencies carefully: - Is it actively maintained? - Is it widely used/trusted? - Would it be better to implement the functionality ourselves? - Pin dependency versions in Cargo.toml for reproducible builds. ## Asynchronous Programming - Use `async/await` for asynchronous code. - Use `tokio` for async runtime. - Be careful with blocking operations in async contexts. - Consider using channels for communication between components.

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/nwiizo/tfmcp'

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