Skip to main content

mcp_git/
lib.rs

1//! MCP server that lets LLMs explore and search Git repositories.
2//!
3//! Provides tools for listing repos, browsing commit logs, viewing diffs,
4//! searching commit messages, and inspecting branches — all read-only.
5
6pub mod error;
7pub mod server;