Skip to content

Sendly

SMS gateway with a straightforward REST API: send a single message, or the same message to up to 100 numbers in one call.

  • APIhttps://api.sendly.link (POST /api/sms, POST /api/sms-multi)
  • Panelapp.sendly.link, where you generate your API token
  • Websitesendly.link

Client libraries

Language Repository
Python 3.10+ python-client
PHP 8.2+ php-client
TypeScript / Node 18+ javascript-client

Clients for Java, C# and Bash are on the way.

What every client has in common

  • Client-side validation before any HTTP request is made, so obvious mistakes never reach the API
  • Typed errors carrying the HTTP status and the parsed errors map
  • A 30-second default timeout and no automatic retries – a retry after an ambiguous failure could send the same SMS twice, so that decision is left to you
  • Configuration through SENDLY_TOKEN and SENDLY_BASE_URL
  • Zero runtime dependencies

Sending SMS from an AI agent

Sendly runs an MCP server at https://mcp.sendly.link/mcp (Streamable HTTP), so assistants such as Claude Code, Codex CLI, Gemini CLI and Cursor can send messages directly. It is stateless and multi-tenant: you supply your own token in your MCP client configuration and nothing is stored server-side.

{
  "mcpServers": {
    "sendly": {
      "type": "http",
      "url": "https://mcp.sendly.link/mcp",
      "headers": { "Authorization": "Bearer YOUR_SENDLY_TOKEN" }
    }
  }
}

Popular repositories Loading

  1. javascript-client javascript-client Public

    TypeScript client for the Sendly SMS API – send SMS, bulk send, webhook parsing. Zero runtime dependencies, Node 18+.

    JavaScript

  2. python-client python-client Public

    Python client for the Sendly SMS API – send SMS, bulk send, webhook parsing. Zero dependencies, Python 3.10+.

    Python

  3. php-client php-client Public

    PHP client for the Sendly SMS API – send SMS, bulk send, webhook parsing. Zero dependencies, PHP 8.2+.

    PHP

  4. .github .github Public

    Organisation profile and community files for Sendly

Repositories

Showing 4 of 4 repositories

Top languages

Loading…

Most used topics

Loading…