Send SMS from Claude AI with MCP Server

Connect SMSPM to Claude Desktop using the Model Context Protocol. Send SMS messages by simply asking Claude — no code required.

🤖

What is MCP?

Model Context Protocol (MCP) is an open standard that lets AI assistants like Claude use external tools and services directly inside your conversations.

1

Step 1 — Install Node.js

Make sure you have Node.js 18 or newer installed.

nodejs.org →
2

Step 2 — Configure Claude Desktop

Open your Claude Desktop config file and add the SMSPM server:

macOS ~/Library/Application Support/Claude/claude_desktop_config.json
Windows %APPDATA%\Claude\claude_desktop_config.json
json
{
  "mcpServers": {
    "smspm": {
      "command": "npx",
      "args": ["smspm-mcp"],
      "env": {
        "SMSPM_HASH": "your-hash-here",
        "SMSPM_TOKEN": "your-token-here"
      }
    }
  }
}
3

Step 3 — Add your credentials

Replace the placeholder values with your real SMSPM Hash and API Token from your account settings.

Log in to your SMSPM account, go to Settings → API to copy your Hash and generate a Token.

Go to SMSPM Settings
4

Step 4 — Restart Claude Desktop

Quit and reopen Claude Desktop. The SMSPM tool will appear automatically.

How to use it

Once installed, just ask Claude in plain language:

💬 "Send an SMS to +37256789045 saying "Your order has shipped""
💬 "Text +447911123456 — your appointment is tomorrow at 10am"
💬 "Send a message to +15551234567 with the confirmation code 8821"

Parameters

Parameter Description
toNumber required Recipient phone in international format (e.g. 37256789045)
text required The SMS message text
fromNumber optional Sender name shown to recipient (default: smspm.com)

Frequently Asked Questions

What is an MCP server for SMS?

An SMS MCP (Model Context Protocol) server exposes SMS-sending as a tool your AI assistant can call. Once connected, you can ask Claude, Cursor, or any MCP client to send an SMS and it happens through your SMSPM account — no custom code.

Which AI clients work with the SMSPM MCP server?

Any client that supports the Model Context Protocol: Claude Desktop, Claude Code, Cursor, and most MCP-compatible agents. The setup is the same — point the client at the SMSPM server with your API credentials.

Do I need to write code to send SMS from Claude?

No. After installing the MCP server and adding your SMSPM_HASH and SMSPM_TOKEN, you simply ask the assistant to send a message. The server translates the request into an SMSPM API call.

Is the SMSPM MCP server free?

The server is open and free to install. You pay only for the SMS messages you send, at SMSPM's standard per-country rates — see SMS pricing.

Related