Skip to content

The @23telecom/mcp server gives Claude, Cursor or any MCP client five tools: send_sms, get_message_status, get_balance, get_stats, list_messages.

Terminal window
claude mcp add 23telecom -e TELECOM23_API_KEY=sk_test_your_key -- npx -y @23telecom/mcp

Single static binary, Go stdlib only — send and inspect SMS from any shell:

Terminal window
cd cli && go build -o 23telecom .
export TELECOM23_API_KEY=sk_test_...
23telecom send --to +447911123456 --message "Hello!" --sender MyApp
23telecom status <message_id>
23telecom balance
23telecom stats --period 30d
23telecom messages --status delivered --limit 10

Every command takes --json for raw output (pipe to jq). Exit codes: 0 ok · 1 API error · 2 usage error.

Official libraries for TypeScript, Python and PHP — see Libraries & SDKs.