1. Conduid
  2. Developer Tools
  3. rchanllc/joltsms-mcp-server
MCP server · Developer Tools

rchanllc/joltsms-mcp-server

MCP server for JoltSMS — provision real-SIM US phone numbers and receive SMS/OTP codes

Unclaimed MIT last commit 6 months ago devtools
56Fair

Scored 11 hours ago · breakdown

About rchanllc/joltsms-mcp-server

rchanllc/joltsms-mcp-server is an MCP server published by rchanllc in the Developer Tools category: mCP server for JoltSMS — provision real-SIM US phone numbers and receive SMS/OTP codes. It has been installed 1 times through Conduid.

Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx joltsms-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about rchanllc/joltsms-mcp-server

Powered by Claude · Grounded in docs

I know everything about rchanllc/joltsms-mcp-server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v1.0.2v1.0.2 · 26 Feb 2026What's New Added Dockerfile for container-based deployments and directory listings (Glama) Version bump to match npm release Installation npx @joltsms/mcp-server Or add to your MCP config: { "mcpServers": { "joltsms": { "command": "npx",…

README

@joltsms/mcp-server

MCP server for JoltSMS — provision dedicated real-SIM US phone numbers and receive SMS/OTP codes through AI agents.

Built on the Model Context Protocol, this server gives AI agents (Claude Code, Claude Desktop, Cursor, etc.) the ability to rent phone numbers, wait for incoming SMS, extract OTP codes, and manage billing — all through standardized tool calls.

Quick Start

1. Get an API Key

Create a JoltSMS account and generate an API key at Dashboard → Settings → API Keys.

2. Configure Your MCP Client

Add to your .mcp.json (Claude Code) or MCP settings (Claude Desktop, Cursor):

{
  "mcpServers": {
    "joltsms": {
      "command": "npx",
      "args": ["-y", "@joltsms/mcp-server"],
      "env": {
        "JOLTSMS_API_KEY": "jolt_sk_your_key_here"
      }
    }
  }
}

3. Use It

Your AI agent now has access to all JoltSMS tools. Try:

"Provision a new phone number with area code 650 and wait for an OTP"

Tools

Tool Description
joltsms_list_numbers List active numbers with service labels, tags, and unread counts
joltsms_get_number Full details for a single number
joltsms_update_number Set service label, tags, or notes on a number
joltsms_provision_number Rent a new dedicated real-SIM US number ($50/mo)
joltsms_release_number Cancel/release a number at end of billing period
joltsms_list_messages List recent SMS with parsed OTP codes
joltsms_mark_read Mark single or bulk messages as read
joltsms_wait_for_sms Poll until an SMS arrives (key tool for OTP flows)
joltsms_get_latest_otp Get the most recent parsed verification code
joltsms_billing_status Check all subscriptions with billing health

OTP Verification Workflow

The most common use case — automated phone verification:

1. joltsms_provision_number({ area_code: "650" })
   → Number provisioning started! Phone: +16505551234

2. joltsms_update_number({ number_id: "+16505551234", service_name: "PayPal" })
   → Tagged for easy lookup later

3. [Agent enters phone number on PayPal and requests OTP]

4. joltsms_wait_for_sms({ number_id: "+16505551234", timeout_seconds: 120 })
   → SMS received after 8.2s: "Your PayPal code is 847291"
   → OTP Code: 847291

5. joltsms_mark_read({ number_id: "+16505551234" })
   → Inbox clean

6. [Agent enters 847291 on PayPal — verification complete]

Environment Variables

Variable Required Description
JOLTSMS_API_KEY Yes Your API key (jolt_sk_*)
JOLTSMS_API_URL No API base URL (defaults to https://api.joltsms.com)

Requirements

  • Node.js 18+
  • A JoltSMS account with a payment method on file
  • Your first number must be ordered through the Dashboard to complete initial 3D Secure verification

Documentation

License

MIT

README mirrored from the source repository 11 hours ago. The original is authoritative.

Questions

About rchanllc/joltsms-mcp-server

How do I install rchanllc/joltsms-mcp-server?

Run npx joltsms-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 1 installs, so the command is known to work with current clients.

Is rchanllc/joltsms-mcp-server safe to use with an AI agent?

Its trust score is 56 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is rchanllc/joltsms-mcp-server still maintained?

The last commit was 6 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.