git_iris/mcp/mod.rs
1//! Model Context Protocol (MCP) integration for Git-Iris
2//!
3//! This module contains the implementation of the MCP server
4//! that allows Git-Iris to be used directly from compatible
5//! LLM-powered tools and assistants.
6
7pub mod config;
8pub mod server;
9pub mod tools;
10
11// Re-export main components
12pub use server::serve;
13pub use tools::{ChangelogTool, CodeReviewTool, CommitTool, ReleaseNotesTool};