Converts Morse code sequences back to readable text using standard International Morse Code mappings. Access via MCP in Cursor or Claude Code, or REST at GET /v1/encode/morse/decode. Pass "... --- ..." and get "SOS" back. Handles letters, numbers, and common punctuation with proper space separation between characters.
curl "https://tinyfn.io/v1/encode/morse/decode" \
-H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/encode/morse/decode', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const data = await response.json();
console.log(data);
import requests
response = requests.get('https://tinyfn.io/v1/encode/morse/decode',
headers={'X-API-Key': 'YOUR_API_KEY'})
data = response.json()
print(data)
Connect your AI agent (Claude, Cursor, Windsurf, etc.) to TinyFn's encoding tools:
{
"mcpServers": {
"tinyfn-encoding": {
"url": "https://tinyfn.io/mcp/encoding",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Use the morse_decode tool in Cursor, Claude Code, or other MCP-enabled editors. Pass your dot-dash sequence as input and get the decoded text back instantly.
Supports all standard International Morse Code characters: A-Z letters, 0-9 numbers, and common punctuation like period, comma, question mark, and exclamation point.
Separate individual characters with spaces (e.g., '.- -... -.-.' for 'ABC'). Use forward slashes or multiple spaces to separate words if needed.
No, it only decodes standard International Morse Code mappings. Invalid sequences will return an error or partial results.
Encode converts text to Morse code dots and dashes, while decode converts Morse sequences back to readable text. Both use the same character set.
Get your free API key and start using Morse Decode in seconds.
Get Free API Key