NATO Phonetic & Morse
live UtilitySpell text with the NATO phonetic alphabet (Alfa Bravo Charlie) and encode/decode Morse code. Keyless, offline.
Tools
spell_nato Spell text using the NATO phonetic alphabet (A -> "Alfa", B -> "Bravo"…). Great for reading codes/confirmation numbers aloud. Keyless, offline.
No parameters required.
Try it
morse_encode Encode text to Morse code (letters separated by spaces, words by " / "). Keyless, offline.
No parameters required.
Try it
morse_decode Decode Morse code back to text. Accepts letters separated by spaces and words by "/" or " " (double space). Keyless, offline.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/nato/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/nato/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"spell_nato","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("spell_nato", {}); // Or ask in plain English:
const answer = await px.ask("spell text with the nato phonetic alphabet (alfa bravo charlie) and encode/decode morse code");