mcp-polib
Provides tools for reading, writing, and manipulating GNU Gettext .po translation files, including batch updates, context-aware lookups, and fuzzy entry detection.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-polibread po file /project/locale/fr.po"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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.
Related MCP server: SimpleLocalize MCP Server
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 metadataBehavior:
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_pathOutput: All entries marked as "fuzzy"
Use Case: Find incomplete or uncertain translations for review
Getting Started
Local Development
Install dependencies:
uv syncRun 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 httpRun 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:latestRun 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 fileDocumentation
Full API documentation is available in:
OpenAPI Spec:
docs/reference/endpoints_swagger.mdMkDocs: Run
uv run mkdocs serveto view locally
To rebuild documentation:
chmod +x scripts/build_docs.sh
scripts/build_docs.sh
uv run mkdocs buildTechnical Stack
Framework: FastAPI + FastMCP
PO File Handling: polib
Package Manager: uv
Container: Docker (Python 3.12, Bookworm slim)
Formatting: powrap
Testing: pytest
Documentation: MkDocs
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/hsiangjenli/mcp-polib'
If you have feedback or need assistance with the MCP directory API, please join our Discord server