foundry-mcp 0.7.1

A comprehensive CLI tool and MCP server for deterministic project management and AI coding assistant integration
Documentation
//! # MCP Server Module
//!
//! This module provides the MCP (Model Context Protocol) server implementation
//! that exposes the same functionality as the CLI commands through MCP tools.
//!
//! The MCP server provides identical functionality to the CLI, following the PRD
//! requirement that "MCP tools map directly to CLI commands" with identical
//! JSON response formats.

pub mod error;
pub mod handlers;
pub mod macros;
pub mod server;
pub mod tools;
pub mod traits;

pub use handlers::*;
pub use server::*;
pub use tools::*;