mcp-polib
A Model Context Protocol server for reading, writing, and managing GNU Gettext .po translation files, enabling language models to perform file operations, entry management, partial updates, and fuzzy entry detection.
README
MCP Polib Server
A Model Context Protocol (MCP) server for reading, writing, and manipulating GNU Gettext
.pofiles.
Overview
This project provides a FastAPI-based MCP server that exposes a set of tools for working with PO (Portable Object) translation files using the polib library. It integrates with FastMCP to expose all operations as MCP-compatible tools, enabling seamless integration with language models and AI agents.
Key Features
- File Operations: Read complete PO files or look up specific entries by context.
- Entry Management: Create, update, and modify PO entries with full context support (msgid, msgstr, comments, flags, occurrences).
- Partial Updates: Merge new entries into existing PO files without overwriting unrelated data.
- Fuzzy Entry Detection: Identify and list all entries flagged as "fuzzy" for review.
- Automatic Formatting: Apply powrap formatting after writes to maintain PO file standards.
- Dockerized Deployment: Ready-to-use Docker image with Python 3.12 and all dependencies pre-installed.
- MCP Transport Flexibility: Support for both
stdioandhttptransports.
Available Tools
All endpoints operate on absolute file paths to PO files:
read_po– Load all entries from a PO file.write_po– Create or update entries in a PO file. Merges intelligently: updates existing entries bymsgid+msgctxt, appends new ones, and preserves unmodified entries. Auto-formats withpowrap.read_po_context– Fetch a specific entry bymsgidplus surrounding context (configurable window size).find_fuzzy– Return all entries marked with the "fuzzy" flag.
Tool Details
read_po
- Input:
file_path(absolute path to.pofile) - Output: List of all PO entries with msgid, msgstr, comments, flags, and occurrences
- Use Case: Extract all translations from a file for review or processing
write_po
- Input:
file_pathand list of entries with msgid, msgstr, optional metadata - Behavior:
- If entry exists (same msgid + msgctxt), updates it
- Otherwise, appends as new entry
- Unmodified entries remain unchanged
- Runs
powrap --modifiedfor automatic formatting
- Output: Success status and message (includes powrap errors if any)
- Use Case: Batch update or create translations
read_po_context
- Input:
file_path,msgid,context_size(default: 1) - Output: Target entry with surrounding entries before/after
- Use Case: View a translation with its neighboring context for better understanding
find_fuzzy
- Input:
file_path - Output: All entries marked as "fuzzy"
- Use Case: Find incomplete or uncertain translations for review
Getting Started
Local Development
-
Install dependencies:
uv sync -
Run the MCP server:
# stdio transport (default) uv run fastmcp run mcp_tools/main.py# http transport uv run fastmcp run mcp_tools/main.py --transport http -
Run tests:
uv run pytest
Docker
-
Build the image:
docker build -t mcp-polib:latest . -
Run the container with stdio transport:
docker run -i --rm mcp-polib:latest -
Run the container with http transport:
docker run --rm -p 8000:8000 mcp-polib:latest uv run fastmcp run mcp_tools/main.py --transport http
Configure in Claude Desktop
To use this server with Claude Desktop, add the following to your claude_desktop_config.json:
macOS:
{
"mcpServers": {
"mcp-polib": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-v",
"/Users:/Users",
"mcp-polib:latest"
]
}
}
}
Linux:
{
"mcpServers": {
"mcp-polib": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-v",
"/home:/home",
"mcp-polib:latest"
]
}
}
}
Windows:
{
"mcpServers": {
"mcp-polib": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"-v",
"C:\\Users:C:\\Users",
"mcp-polib:latest"
]
}
}
}
Project Structure
mcp-polib/
├── mcp_tools/
│ ├── main.py # FastAPI app and MCP tool implementations
│ ├── schemas.py # Pydantic models for request/response validation
│ └── __init__.py
├── tests/
│ ├── test_po_tools.py # Comprehensive test suite
│ └── test.po # Sample PO file for testing
├── scripts/
│ ├── build_docs.sh # Documentation build script
│ ├── build_image.sh # Docker image build helper
│ ├── export_openapi.py # Extract OpenAPI spec
│ └── openapi_to_markdown.py # Convert OpenAPI to Markdown
├── docs/ # MkDocs documentation
├── Dockerfile # Production-ready Docker image
├── pyproject.toml # Project metadata and dependencies
└── README.md # This file
Documentation
Full API documentation is available in:
- OpenAPI Spec:
docs/reference/endpoints_swagger.md - MkDocs: Run
uv run mkdocs serveto view locally
To rebuild documentation:
chmod +x scripts/build_docs.sh
scripts/build_docs.sh
uv run mkdocs build
Technical Stack
- Framework: FastAPI + FastMCP
- PO File Handling: polib
- Package Manager: uv
- Container: Docker (Python 3.12, Bookworm slim)
- Formatting: powrap
- Testing: pytest
- Documentation: MkDocs
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.