gettext-mcp 0.1.0

Model Context Protocol (MCP) server for managing GNU gettext .po/.pot translation files, with CRUD tools and an optional web UI.
Documentation
1
2
3
4
5
6
7
8
9
pub mod store;
pub mod mcp_server;
pub mod web;

pub use store::{
    GettextFile, GettextStore, GettextStoreManager, MessageEntry, ParseError, StoreError,
};
pub use mcp_server::GettextMcpServer;
pub use web::WebConfig;