morse_decode

Pack: nato · Endpoint: https://gateway.pipeworx.io/nato/mcp

Decode Morse code back to text. Accepts letters separated by spaces and words by ”/” or ” ” (double space). Keyless, offline.

Parameters

NameTypeRequiredDescription
morsestringyesMorse code, e.g. ”… .. / - … . .-. .”

Example call

Arguments

{
  "morse": ".... . .-.. .-.. --- / .-- --- .-. .-.. -.."
}

curl

curl -X POST https://gateway.pipeworx.io/nato/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"morse_decode","arguments":{"morse":".... . .-.. .-.. --- / .-- --- .-. .-.. -.."}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('morse_decode', {
  "morse": ".... . .-.. .-.. --- / .-- --- .-. .-.. -.."
});

More examples

{
  "morse": "... --- ..."
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "nato": {
      "url": "https://gateway.pipeworx.io/nato/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 15, 2026