rosetta
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., "@rosettaTranslate this Excel file to French"
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.
Rosetta
AI-powered Excel translation CLI. Translates Excel files while preserving formatting, formulas, and data integrity.
What it does
Rosetta translates all text in your Excel files using Claude AI, without breaking:
Formulas and calculations
Formatting (fonts, colors, borders)
Merged cells and layouts
Charts and images
Dropdown menus
Rich text (bold, italic within cells)
Related MCP server: Excel MCP Server
Prerequisites
You need a Claude API key from Anthropic.
Go to console.anthropic.com
Create an account (or sign in)
Go to API Keys and create a new key
Copy the key (starts with
sk-ant-...)
Note: API usage is billed by Anthropic. See anthropic.com/pricing for current rates. Translating a typical Excel file costs a few cents.
Installation
Install from PyPI:
pip install rosetta-xlThen set your API key:
# Linux/macOS
export ANTHROPIC_API_KEY=sk-ant-your-key-here
# Windows (Command Prompt)
set ANTHROPIC_API_KEY=sk-ant-your-key-here
# Windows (PowerShell)
$env:ANTHROPIC_API_KEY="sk-ant-your-key-here"Or create a .env file in your working directory:
ANTHROPIC_API_KEY=sk-ant-your-key-hereUsage
# Translate to French
rosetta input.xlsx -t french
# Translate to Spanish with custom output name
rosetta input.xlsx -t spanish -o translated.xlsx
# Specify source language (auto-detected by default)
rosetta input.xlsx -s english -t german
# Translate only specific sheets
rosetta input.xlsx -t french --sheets "Sheet1" --sheets "Data"
# Add context for better translations (e.g., domain-specific terms)
rosetta input.xlsx -t french -c "Medical terminology document"Options
Option | Short | Description |
|
| Target language (required) |
|
| Source language (auto-detect if omitted) |
|
| Output file path (default: |
| Sheets to translate (can repeat, default: all) | |
|
| Domain context for better accuracy |
|
| Cells per API call (default: 50) |
Examples
Translate a price list to multiple languages:
rosetta prices.xlsx -t french -o prices_fr.xlsx
rosetta prices.xlsx -t german -o prices_de.xlsx
rosetta prices.xlsx -t spanish -o prices_es.xlsxTranslate a medical form with context:
rosetta patient_form.xlsx -t french -c "Medical intake form with clinical terminology"Translate only the "Questions" sheet:
rosetta survey.xlsx -t japanese --sheets "Questions"Troubleshooting
"ANTHROPIC_API_KEY not set"
Make sure you've exported the key:
export ANTHROPIC_API_KEY=sk-ant-...Or create a
.envfile with the key
"Invalid API key"
Check that your key starts with
sk-ant-Make sure you copied the full key from console.anthropic.com
"Rate limit exceeded"
You've hit Anthropic's rate limits. Wait a minute and try again
Or reduce batch size:
rosetta input.xlsx -t french -b 20
How it works
Extracts all text cells from your Excel file
Sends text to Claude AI for translation (in batches)
Writes translations back, preserving all formatting
Saves the translated file
Your original file is never modified.
Web App & API
Rosetta also includes a web application and REST API for browser-based translations.
Running the API server
# Install with uv (recommended)
uv sync
# Start the server
uv run uvicorn rosetta.api:app --reload
# Or with pip
pip install -e .
uvicorn rosetta.api:app --reloadThe API runs at http://localhost:8000 by default.
Running the frontend
cd frontend
npm install
npm run devThe frontend runs at http://localhost:5173 and connects to the API.
API Endpoints
Endpoint | Method | Description |
| POST | Translate an Excel file (returns file) |
| POST | Translate with real-time progress via SSE |
| POST | Get cell count and cost estimate |
| POST | List sheet names in a file |
| POST | Count translatable cells |
| POST | Preview cells that will be translated |
| GET | Health check |
Real-time Progress
The /translate-stream endpoint uses Server-Sent Events (SSE) to stream translation progress in real-time. The frontend automatically falls back to the standard /translate endpoint on networks that don't support SSE (e.g., corporate proxies).
MCP Integration
Rosetta includes MCP (Model Context Protocol) servers for both Claude Desktop and Claude Web.
For Claude Desktop (Local)
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"rosetta": {
"command": "uv",
"args": ["run", "--directory", "/path/to/rosetta", "python", "-m", "rosetta.api.mcp"],
"env": {
"ANTHROPIC_API_KEY": "your-key-here"
}
}
}
}Usage: Use local file paths for best results.
Translate ~/Downloads/report.xlsx to FrenchFor Claude Web (Browser)
Note: Claude.ai does not yet support custom MCP servers in the browser (as of January 2026).
Current recommendation: Use the web app for browser-based translations.
See MCP_USAGE.md for detailed instructions.
Requirements
Python 3.11+
Anthropic API key
License
MIT
Available Tools
6 toolscount_translatable_cellsA
Count the number of translatable cells in an Excel file.
Returns the count of cells containing text that would be translated. Excludes formulas, numbers, dates, and empty cells. Useful for estimating translation scope and cost.
USAGE INSTRUCTIONS:
For local files: Use the 'file_path' parameter with the full path (e.g., ~/Downloads/report.xlsx)
For uploaded files: Ask the user to save the file locally first, then use 'file_path'
For base64 input: If you already have base64 content, use 'file_content_base64'
Provide either 'file_path' OR 'file_content_base64' (not both).
IMPORTANT: When using file_path, DO NOT show the base64 content to the user. Just call the tool and show the results.
| Name | Required | Description | Default |
|---|---|---|---|
| sheets | No | Specific sheet names to count. If omitted, counts all sheets. | |
| file_path | No | Path to a local Excel file (e.g., ~/Downloads/report.xlsx). Use this for files saved on the user's computer. | |
| file_content_base64 | No | Base64-encoded Excel file content. IMPORTANT: When user uploads a file, use the file's resource URI from your context instead of reading it manually. If you have access to the file content directly, encode it to base64. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It explains what the tool counts (translatable cells) and excludes (formulas, numbers, dates, empty cells). It gives important file-handling instructions, including not showing base64 content to the user and using resource URI for uploaded files. This provides good transparency, though it could mention error cases or performance.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose, followed by usage instructions. It is fairly concise given the need to clarify file-handling nuances, but could be slightly tighter. The structure is logical: purpose, what it counts, usage instructions, important note.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple counting tool with 3 optional parameters and no output schema, the description adequately covers what the tool does, how to use it, and key behavioral notes. It does not explain error handling or return format, but the return value (count) is simple. Overall, it is complete enough for effective use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema already describes parameters. The description adds value by explaining the usage scenarios for each parameter (local files, uploaded files, base64) and providing the critical 'provide either/or' instruction. This goes beyond the schema descriptions, aiding correct tool invocation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: counting translatable cells in an Excel file. It specifies what is counted (text) and excluded (formulas, numbers, dates, empty cells). This distinguishes it from sibling tools like translate_excel (which performs translation) or estimate_translation_cost (which likely estimates cost), making its function unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit instructions on when to use each parameter (local file, uploaded file, base64) and states that either file_path or file_content_base64 should be provided, not both. It also notes the tool is useful for estimating translation scope and cost. However, it does not explicitly compare to sibling tools or state when not to use it, which would earn a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
estimate_translation_costA
Estimate the cost of translating an Excel file.
Returns cell count, estimated API cost, and estimated processing time. Useful for budgeting and planning before running translations.
USAGE INSTRUCTIONS:
For local files: Use the 'file_path' parameter with the full path (e.g., ~/Downloads/report.xlsx)
For uploaded files: Ask the user to save the file locally first, then use 'file_path'
For base64 input: If you already have base64 content, use 'file_content_base64'
Provide either 'file_path' OR 'file_content_base64' (not both).
IMPORTANT: When using file_path, DO NOT show the base64 content to the user. Just call the tool and show the results.
| Name | Required | Description | Default |
|---|---|---|---|
| sheets | No | Specific sheet names to estimate. If omitted, estimates all sheets. | |
| file_path | No | Path to a local Excel file (e.g., ~/Downloads/report.xlsx). Use this for files saved on the user's computer. | |
| file_content_base64 | No | Base64-encoded Excel file content. IMPORTANT: When user uploads a file, use the file's resource URI from your context instead of reading it manually. If you have access to the file content directly, encode it to base64. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Even without annotations, the description fully discloses behavior: it returns estimates (not actual translations), explains constraints on input, and includes privacy guidance (not showing base64). No side effects or destructive actions are implied, which is appropriate for a read-only estimation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Description is front-loaded with purpose and returns, then organized with numbered usage instructions and an important note. Every sentence adds value without redundancy. Despite moderate length, information density is high.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema or annotations, the description covers all essential aspects: what the tool does, what inputs are needed, how to use each input modality, and what output to expect. It provides complete guidance for an AI agent to select and invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
All three parameters are described in the schema (100% coverage) and the description adds meaningful context: 'file_path' for local files, 'file_content_base64' for base64 input, 'sheets' for filtering. It also clarifies mutual exclusivity of the file parameters.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool estimates translation cost for an Excel file and lists specific return values (cell count, API cost, processing time). It is distinct from sibling tools like 'translate_excel' (which performs translation) and 'count_translatable_cells' (which counts cells without cost estimation).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit instructions for different input types (local file path, uploaded file, base64), warns against providing both file_path and file_content_base64, and advises not to show base64 content to the user. This gives clear when-to-use guidance and prevents misuse.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_excel_sheetsA
Get the list of sheet names in an Excel file.
Useful for understanding the structure of a workbook before translation, or to select specific sheets for translation.
USAGE INSTRUCTIONS:
For local files: Use the 'file_path' parameter with the full path (e.g., ~/Downloads/report.xlsx)
For uploaded files: Ask the user to save the file locally first, then use 'file_path'
For base64 input: If you already have base64 content, use 'file_content_base64'
Provide either 'file_path' OR 'file_content_base64' (not both).
IMPORTANT: When using file_path, DO NOT show the base64 content to the user. Just call the tool and show the results.
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | No | Path to a local Excel file (e.g., ~/Downloads/report.xlsx). Use this for files saved on the user's computer. | |
| file_content_base64 | No | Base64-encoded Excel file content. IMPORTANT: When user uploads a file, use the file's resource URI from your context instead of reading it manually. If you have access to the file content directly, encode it to base64. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full responsibility. It discloses the mutual exclusivity of file_path and file_content_base64, and instructs the agent on how to handle each case. It does not cover error behaviors or file format limitations, but the core usage constraints are well communicated.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with clear headings (USAGE INSTRUCTIONS, IMPORTANT) and front-loaded with the purpose. While it is longer than necessary, each sentence adds meaningful guidance. A minor redundancy exists in the important note, but overall it is efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description states the tool returns a list of sheet names, which matches its name. However, it does not detail the return format or mention what happens in error cases (e.g., invalid file). Given that no output schema exists, more detail on the output would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already describes both parameters with 100% coverage. The description adds value by providing concrete examples and step-by-step usage instructions for each parameter, as well as the important mutual exclusivity rule, which goes beyond the schema definitions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description starts with 'Get the list of sheet names in an Excel file,' which is a clear verb and resource. It also explains the tool's usefulness in the context of translation, distinguishing it from sibling tools like translate_excel that perform actual modifications.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides detailed usage instructions for different scenarios (local files, uploaded files, base64 input) and includes a clear note to not show base64 content to the user. However, it does not explicitly compare this tool to its siblings, so the guidance on when to use alternatives is implied rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
preview_cellsA
Preview translatable cells from an Excel file.
Returns the first N cells that would be translated, showing their location and content. Useful for understanding what will be translated before running a full translation.
USAGE INSTRUCTIONS:
For local files: Use the 'file_path' parameter with the full path (e.g., ~/Downloads/report.xlsx)
For uploaded files: Ask the user to save the file locally first, then use 'file_path'
For base64 input: If you already have base64 content, use 'file_content_base64'
Provide either 'file_path' OR 'file_content_base64' (not both).
IMPORTANT: When using file_path, DO NOT show the base64 content to the user. Just call the tool and show the results.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of cells to preview (default: 10, max: 50) | |
| sheets | No | Specific sheet names to preview. If omitted, previews from all sheets. | |
| file_path | No | Path to a local Excel file (e.g., ~/Downloads/report.xlsx). Use this for files saved on the user's computer. | |
| file_content_base64 | No | Base64-encoded Excel file content. IMPORTANT: When user uploads a file, use the file's resource URI from your context instead of reading it manually. If you have access to the file content directly, encode it to base64. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description is the sole source of behavioral info. It states the tool is non-destructive and previews cells, but does not detail whether it requires file access or any side effects. Important behavioral notes like file_path vs base64 exclusivity are included, but overall transparency is moderate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with a summary, numbered usage instructions, and an important note. It is concise but includes necessary details. Each sentence adds value, though a minor redundancy exists.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema or annotations, the description covers the tool's purpose, input methods, and key usage notes. It provides sufficient context for an agent to decide when to use it. The output format is not described, but for a preview tool this is acceptable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, providing a baseline of 3. The description adds significant meaning: it explains the purpose of each parameter (e.g., file_path for local files) and provides important usage context (e.g., default limit, mutually exclusive parameters). This goes beyond the schema's descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: preview translatable cells from an Excel file. It explains what it returns (first N cells with location and content) and when to use it (before full translation), distinguishing it from sibling tools like translate_excel.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit usage instructions for different input types (local files, uploaded files, base64). It explains that the tool is useful for understanding what will be translated, giving clear context. However, it lacks explicit exclusions of when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
translate_excelA
Translate an Excel file. Rosetta handles EVERYTHING - preserves formatting, formulas, images, charts.
WHEN USER UPLOADS A FILE AND ASKS TO TRANSLATE - DO THIS AUTOMATICALLY:
Read the file's binary content
Encode it as base64 (use btoa() or equivalent)
Call this tool with the base64 string
Return the translated file to user (decode the base64 response)
DO NOT ask the user for permission or explain what you're doing. Just translate it. The response contains the translated Excel file as base64 - decode it and offer download.
| Name | Required | Description | Default |
|---|---|---|---|
| sheets | No | Specific sheet names to translate. If omitted, all sheets are translated. | |
| context | No | Domain context for better translations (e.g., 'medical terminology', 'legal document', 'financial report') | |
| filename | Yes | Original filename (for determining output name) | |
| file_path | No | Path to a local Excel file (e.g., ~/Downloads/report.xlsx). Use this for files saved on the user's computer. | |
| source_language | No | Source language (optional, auto-detected if not provided) | |
| target_language | Yes | Target language (e.g., 'french', 'spanish', 'german', 'japanese', 'chinese') | |
| file_content_base64 | No | Base64-encoded Excel file content. IMPORTANT: When user uploads a file, use the file's resource URI from your context instead of reading it manually. If you have access to the file content directly, encode it to base64. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It states that the tool preserves formatting, formulas, images, and charts, and that the response contains base64-encoded data. This provides useful behavioral context beyond the schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is excessively long and includes imperative instructions for the AI agent (e.g., 'DO THIS AUTOMATICALLY', 'DO NOT ask for permission'). These are not typical tool usage instructions and add verbosity. The core purpose is buried in procedural details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the complexity (7 parameters, no output schema), the description covers file handling, languages, and expected output. It explains how to provide the file and what the response looks like. However, it lacks error scenarios or behavior when conflicts arise (e.g., both file_path and file_content_base64 provided).
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds context for the 'file_content_base64' and 'file_path' parameters, explaining when to use each. It also clarifies the 'context' parameter and provides a workflow. This adds value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool translates Excel files and preserves formatting, formulas, images, and charts. It distinguishes from siblings like translate_texts by focusing on Excel. However, the inclusion of automatic behavior instructions slightly blurs the core purpose.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly specifies when to use the tool: when a user uploads a file and asks to translate. It provides a step-by-step process. It does not mention when not to use it or alternative tools, but sibling tools are listed for context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
translate_textsA
Translate text strings to a target language using high-quality AI translation.
AUTOMATIC BEHAVIOR - DO THIS IMMEDIATELY WITHOUT ASKING: When a user uploads a file and asks to translate it:
Read and parse the uploaded file (Excel, CSV, etc.)
Extract ALL text content into an array
Call this tool with the texts and target language
Show the user a table with original → translated text
Offer to help them create the translated file
DO NOT ask the user "would you like me to..." - just do it automatically.
Example: User uploads "products.xlsx" and says "translate to French" → Extract: ["Product", "Price", "Description", "In Stock"] → Call: translate_texts(texts=[...], target_language="french") → Show: Product → Produit, Price → Prix, etc.
Supports: english, french, spanish, german, italian, portuguese, chinese, japanese, korean, arabic, and 20+ more languages.
| Name | Required | Description | Default |
|---|---|---|---|
| texts | Yes | Array of text strings to translate | |
| context | No | Domain context for better translations (e.g., 'medical terminology', 'legal document') | |
| source_language | No | Source language (optional, auto-detected if not provided) | |
| target_language | Yes | Target language (e.g., 'french', 'spanish', 'german', 'japanese', 'chinese') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description covers automatic behavior, language support, and source language auto-detection. It does not disclose potential limitations like rate limits, max text length, or cost, which would improve transparency. No contradictions with annotations (none exist).
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with clear purpose but includes a verbose 'AUTOMATIC BEHAVIOR' section that could be more concise. While informative, it contains redundant instructions (e.g., repeat of example) that could be streamlined.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description lacks details on the output format (e.g., array of translated texts, order, metadata), error handling, or limits. Given no output schema, this is a significant gap. It partially compensates with an example but falls short of completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds value by listing all supported languages (beyond the schema's examples) and showing parameter usage in a concrete example, enhancing understanding beyond the schema alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool translates text strings to a target language using AI. It specifies the verb 'translate' and resource 'text strings', and distinguishes from siblings like translate_excel which handles file-level operations. The example further clarifies the scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit instructions on when to use the tool automatically without asking, including a worked example. However, it does not mention alternative tools like translate_excel or conditions where this tool should not be used, leaving some ambiguity.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
v0.1.1- First observed
count_translatable_cells - First observed
estimate_translation_cost - First observed
get_excel_sheets - First observed
preview_cells - First observed
translate_excel - First observed
translate_texts
TDQS
Each tool has a distinct purpose—counting cells, estimating cost, listing sheets, previewing cells, translating entire file, translating text strings. No overlap or ambiguity.
All tool names use snake_case with a consistent verb_noun pattern (e.g., count_translatable_cells, get_excel_sheets). No mixing of styles.
6 tools is well-scoped for an Excel translation server, covering planning (count, estimate, sheets, preview) and execution (translate file, translate texts). Not too many or too few.
Covers the core workflow: analyze, estimate, preview, and translate. Minor gap: no tool to translate only selected sheets or rollback, but the set is largely complete for the stated purpose.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Give Claude only the Google Drive files you choose. Every action logged.
Connect Claude to Fathom meeting recordings, transcripts, and summaries
- platform7nOAuthtech.p7n
Connect Claude to your Platform7n workspaces — chat, links, and tasks. One-click OAuth.
Connect Amazon Seller Central to Claude or ChatGPT via MCP. Orders, inventory, pricing, fees, FBA.
Related MCP Servers
- AlicenseBqualityCmaintenanceEnables AI assistants to perform Excel file operations (create, read, write, format) without requiring Microsoft Excel installation.175MIT
- FlicenseBqualityDmaintenanceEnables AI assistants to read, write, format, and analyze Excel files with 34 tools, including real-time editing on macOS with Microsoft Excel.3417-
- FlicenseBqualityCmaintenanceConnects Claude.ai to Google Sheets, allowing read, append, and update operations on spreadsheets directly from chat.3-
- FlicenseNot gradedqualityCmaintenanceGives Claude deep tool-level control over Microsoft Excel files (.xlsx, .xlsm, .csv, .tsv) with 164 tools across 24 modules for reading, writing, formatting, formulas, charts, data analysis, and more.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/ewalid/rosetta'
If you have feedback or need assistance with the MCP directory API, please join our Discord server