@dennisk2025/pig-latin-converter
v1.0.11
Published
Converts English sentences to Pig Latin, a playful language modification where words are altered according to standardized rules.
Maintainers
Readme
Pig Latin Converter MCP Server
Converts English sentences to Pig Latin, a playful language modification where words are altered according to standardized rules.
Features
- Converts sentences, phrases, or words from English into Pig Latin
- Preserves punctuation, capitalization, and handles hyphenated words
- Standalone MCP server: works with Claude Desktop or any MCP-compatible client
Installation
With npx (recommended):
npx @dennisk2025/pig-latin-converterOr install globally via npm:
npm install -g @dennisk2025/pig-latin-converterAdding to Claude Desktop
Add this to your Claude Desktop config file at:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Example configuration:
{
"mcpServers": {
"piglatin": {
"command": "npx",
"args": ["@dennisk2025/pig-latin-converter"]
}
}
}Usage
Once added as a MCP server, Claude Desktop or any compatible client can call its tools.
Available Tools
- to_pig_latin: Converts a provided English text string into Pig Latin.
- Parameters:
text(string, required): English sentence or phrase to convert.
- Returns:
result(string): The converted Pig Latin text.
- Parameters:
Example Calls
Input:
text = "Hello world! This is Pig Latin."Tool:
to_pig_latinResult:
Ellohay orldway! Histay isway Igpay Atinlay.Input:
text = "Can't stop, won't stop the party!"Result:
An'tcay opstay, on'tway opstay ethay artypay!Notes
- Only standard English words are altered. Numbers or non-letter tokens are left as-is.
- Handles punctuation and capitalization gracefully.
License
MIT License
