Install
$ agentstack add mcp-miaofalianhua-resxmcp ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
🌐 ResxMcp
🌏 中文说明
> A lightweight MCP server for managing .resx localization files > 一个用于管理 .resx 本地化资源文件的轻量级 MCP 服务器
🎬 Visual Walkthrough
Editing multi-language .resx via Gemini CLI + ResxMcp
Step 1 — Update Strings.resx (neutral/en):
Step 2 — Update Strings.zh-CN.resx (Simplified Chinese):
Step 3 — Update Strings.ja-JP.resx (Japanese):
✅ Step 4 — Final Multilingual Result: Below is the merged multilingual view of all .resx files.
🧭 Overview
ResxMcp is a minimal MCP (Model Context Protocol) compatible tool server that allows safe read / write / modify operations on .resx files. It works with any MCP client such as Gemini CLI, Claude Desktop, or Cursor IDE.
⚙️ Features
✅ Read .resx files as UTF-8 text ✅ Atomic write with optional .bak backup ✅ Add / update / remove resource keys ✅ Works with all MCP clients ✅ Diff-friendly deterministic output
🧰 Available Tools
| Tool | Description | Parameters | |------|--------------|-------------| | resx.read | Read .resx as UTF-8 text | { "file": "path/to/file.resx" } | | resx.write | Write UTF-8 text (atomic replace) | { "file": "path/to/file.resx", "content": "", "backup": true } | | resx.setEntry | Add or update a key/value pair | { "file": "path/to/file.resx", "name": "Key", "value": "Value", "comment": "Optional" } | | resx.removeEntry | Remove a key from .resx | { "file": "path/to/file.resx", "name": "Key" } |
⚠️ Installation Notice
Some users may try to install this project with:
gemini extensions install https://github.com/miaofalianhua/ResxMcp
⚠️ Do NOT do this repeatedly! This command triggers Google’s extension registry verification and may result in rate limit errors (HTTP 429) or installation failure.
👉 The correct way to use ResxMcp is as a local MCP server, not a regular Gemini extension.
✅ Recommended Installation
1️⃣ Build the project
dotnet publish -c Release -r win-x64 -p:PublishSingleFile=true -o ./publish
2️⃣ Register with Gemini CLI
gemini mcp add resx-tool "./publish/ResxMcp.exe"
3️⃣ Verify installation
gemini @resx-tool tools/list
You should see tools such as: resx.read, resx.write, resx.setEntry, and resx.removeEntry.
💡 Tip: If you wish to distribute it as an installable Gemini extension, use the included gemini-extension.json (v1.0.2). It wraps this MCP server for one-command installation when the registry supports MCP-only extensions.
🚀 Quick Start
- Build your .NET project with localization resources.
- Use
resx.readto inspect.resxcontent. - Modify, translate, or generate
.resxfiles automatically with your MCP tools. - Use
resx.writeorresx.setEntryto update keys or values.
🖥️ Example Usage
gemini @resx-tool tools/call resx.setEntry --arguments '{"file":"lang.zh-CN.resx","name":"App.Title","value":"Triad Controls"}'
🧩 Integration
ResxMcp communicates over stdio (JSON-RPC), so it can be used by any modern AI-assisted development tool or automation pipeline following the MCP standard.
Compatible with:
- 🪄 Gemini CLI
- 🧠 Claude Desktop
- 🧰 Cursor IDE
- ⚙️ Any MCP-based custom workflow
🪶 License
Licensed under the [MIT License](LICENSE).
✨ Author
斌哥 (Miaofalianhua) 🌍 GitHub: @miaofalianhua 🧠 Focus: C#, Localization, AI-assisted Development
> 💡 ResxMcp bridges classic .NET localization with modern AI workflows — simple, safe, and open.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: miaofalianhua
- Source: miaofalianhua/ResxMcp
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.