Install tools
Copy page
MCP server — let AI agents send SMS
Section titled “MCP server — let AI agents send SMS”The @23telecom/mcp server gives Claude, Cursor or any MCP client five
tools: send_sms, get_message_status, get_balance, get_stats,
list_messages.
claude mcp add 23telecom -e TELECOM23_API_KEY=sk_test_your_key -- npx -y @23telecom/mcp{ "mcpServers": { "23telecom": { "command": "npx", "args": ["-y", "@23telecom/mcp"], "env": { "TELECOM23_API_KEY": "sk_test_your_key" } } }}23telecom CLI
Section titled “23telecom CLI”Single static binary, Go stdlib only — send and inspect SMS from any shell:
cd cli && go build -o 23telecom .
export TELECOM23_API_KEY=sk_test_...23telecom send --to +447911123456 --message "Hello!" --sender MyApp23telecom status <message_id>23telecom balance23telecom stats --period 30d23telecom messages --status delivered --limit 10Every command takes --json for raw output (pipe to jq). Exit codes:
0 ok · 1 API error · 2 usage error.
Postman & OpenAPI
Section titled “Postman & OpenAPI”- Postman collection — import, set two variables, send.
- OpenAPI 3.1 spec — generate clients, mocks and contract tests.
Official libraries for TypeScript, Python and PHP — see Libraries & SDKs.