gettext-mcp 0.5.0

Model Context Protocol (MCP) server for managing GNU gettext .po/.pot translation files, with CRUD tools and an optional web UI.
Documentation
//! Per-tool handler functions and parameter types.
//!
//! Each `tools/*.rs` file groups related tool handlers. The `#[tool]`
//! methods on [`crate::server::GettextMcpServer`] are thin shims that
//! call these handlers and JSON-encode the result.

pub(crate) mod coverage;
pub(crate) mod crud;
pub(crate) mod discover;
pub(crate) mod discover_files;
pub(crate) mod extract;
pub(crate) mod glossary;
pub(crate) mod header;
pub(crate) mod metadata;
pub(crate) mod mo;
pub(crate) mod search;
pub(crate) mod sync;
pub(crate) mod validate;
pub(crate) mod xliff;