gitai/server/
mod.rs

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