🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@sendly/mcp

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sendly/mcp

Sendly MCP Server — SMS for AI agents. Send messages, manage conversations, verify phone numbers.

Source
npmnpm
Version
1.2.0
Version published
Weekly downloads
184
982.35%
Maintainers
1
Weekly downloads
 
Created
Source

@sendly/mcp

SMS for AI agents — send messages, manage conversations, verify phone numbers via Model Context Protocol.

Quick Setup

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "sendly": {
      "command": "npx",
      "args": ["-y", "@sendly/mcp"],
      "env": {
        "SENDLY_API_KEY": "sk_test_v1_your_key_here"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json in your project:

{
  "mcpServers": {
    "sendly": {
      "command": "npx",
      "args": ["-y", "@sendly/mcp"],
      "env": {
        "SENDLY_API_KEY": "sk_test_v1_your_key_here"
      }
    }
  }
}

VS Code / Windsurf

Same pattern — set SENDLY_API_KEY in the environment and run npx @sendly/mcp as the MCP server command.

Available Tools

Messaging

ToolDescription
send_smsSend an SMS message to a phone number
list_messagesList sent and received messages with pagination
get_messageGet details of a specific message
schedule_smsSchedule a message for future delivery
cancel_scheduled_messageCancel a scheduled message (credits refunded)

Conversations

ToolDescription
list_conversationsList conversation threads by recent activity
get_conversationGet a conversation with optional message history
reply_to_conversationReply within a conversation (auto-sets recipient)
update_conversationUpdate metadata or tags on a conversation
close_conversationClose a conversation (auto-reopens on new inbound)
reopen_conversationReopen a closed conversation
mark_conversation_readReset unread count to zero

OTP / Verification

ToolDescription
send_otpSend a one-time password via SMS
check_otpVerify an OTP code
get_verification_statusCheck verification status

Account

ToolDescription
get_accountGet credit balance, verification status, rate limits

Authentication

Set SENDLY_API_KEY as an environment variable:

  • Test keys (sk_test_v1_...) — sandbox mode, messages simulated, OTP codes returned in response
  • Live keys (sk_live_v1_...) — real SMS delivery on verified phone numbers

Get your API key at sendly.live → Settings → API Keys.

Environment Variables

VariableRequiredDescription
SENDLY_API_KEYYesYour Sendly API key
SENDLY_BASE_URLNoAPI base URL (default: https://sendly.live)

Keywords

sendly

FAQs

Package last updated on 25 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts