Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables AI assistants to send SMS messages, verify phone numbers via OTP, assess fraud risk, and access TeleSign API documentation through natural language.

README.md

TeleSign MCP Server

A Model Context Protocol (MCP) server that provides seamless integration with TeleSign APIs for AI assistants like Anthropic's Claude, OpenAI's ChatGPT, or Google's Gemini. Enable your AI to send SMS messages, verify phone numbers, assess fraud risk, and more.

What is MCP?

The Model Context Protocol is an open standard that allows AI assistants to securely connect to external data sources and tools. This server implements MCP to give AI assistants direct access to TeleSign's communication and verification APIs.

🔨 Features

Available Tools

| Tool | Description | | -------------------------- | ------------------------------------------------------------------------------------------------------- | | verifyapi_send_otp | Send a one-time passcode via SMS, voice, WhatsApp, Viber, RCS, or email with automatic fallback support | | verifyapi_check_code | Verify an OTP code entered by the user | | verifyapi_get_status | Check the status of an ongoing verification | | phoneid_get_info | Get phone number details including type (mobile/landline/VoIP), carrier, and location | | intelligence_assess_risk | Get fraud risk score (0-1000) with allow/flag/block recommendation | | messaging_send_sms | Send SMS messages (OTP, alerts, or marketing) | | docs_search | Search TeleSign documentation | | docs_get | Retrieve full documentation for a topic |

Key Capabilities

  • Multi-Channel OTP Verification - Send verification codes via SMS, voice, WhatsApp, Viber, RCS, or email with automatic fallback between channels
  • Phone Intelligence - Identify phone number type, carrier, and geographic location
  • Fraud Prevention - Real-time risk scoring to detect fraudulent phone numbers
  • SMS Messaging - Send transactional or marketing messages
  • Built-in Documentation - Access TeleSign API docs directly through the AI assistant

🛠️ Installation

Prerequisites

  • Node.js 18+
  • Cursor, Claude Code, VSCode, Windsurf or another MCP Client
  • A TeleSign account with API credentials (Sign up here)

Setup

  1. Clone the repository:
   git clone https://github.com/mdp18/telesign-mcp.git
   cd telesign-mcp
  1. Install dependencies:
   npm install
  1. Build the project:
   npm run build

Configuration

Environment Variables

Set your TeleSign API credentials:

export TELESIGN_CUSTOMER_ID="your-customer-id"
export TELESIGN_API_KEY="your-api-key"

Claude Desktop Configuration

Add this to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "telesign": {
      "command": "node",
      "args": ["/path/to/telesign-mcp/build/index.js"],
      "env": {
        "TELESIGN_CUSTOMER_ID": "your-customer-id",
        "TELESIGN_API_KEY": "your-api-key"
      }
    }
  }
}

Usage Examples

Once configured, you can ask Claude to:

  • _"Send an OTP to +15551234567 via SMS with voice fallback after 30 seconds"_
  • _"Verify the code 123456 for reference ID abc-123"_
  • _"Get information about the phone number +15551234567"_
  • _"Check the fraud risk score for +15551234567"_
  • _"Send an SMS to +15551234567 saying 'Your order has shipped'"_

📚 API Documentation

The server includes built-in documentation accessible via the docs_search and docs_get tools. Available topics:

  • verify-api - OTP verification endpoints and flows
  • phone-id - Phone number lookup details
  • intelligence - Risk scoring and fraud detection
  • messaging-sms - SMS messaging guide
  • status-codes - API response codes reference

🤝 Supported APIs

Currently Functional

  • [x] Verify API - Multi-channel OTP verification (SMS, voice, WhatsApp, Viber, RCS, email) with fallback support
  • [x] Phone ID API - Phone number intelligence with identity attribute add-ons (SIM swap, number deactivation, contact info, porting history, etc.)
  • [x] Intelligence API - Fraud risk scoring and recommendations
  • [x] Messaging API - Basic SMS sending (/v1/messaging)

Coming Soon

  • [ ] Bulk SMS API
  • [ ] Messaging API (full-featured)
  • [ ] SMS Verify API (standalone)
  • [ ] Silent Verify API
  • [ ] Templates API
  • [ ] Voice V2 API
  • [ ] Accounts API
  • [ ] App Verify API
  • [ ] Flow Builder API

💻 Development

# Watch mode for development
npm run dev

# Build for production
npm run build

# Run the server directly
npm start

📄 License

Apache 2.0 - See LICENSE for details.

🛟 Support

⚠️ Disclaimer

This is a community-driven, open source project and is not officially affiliated with, endorsed by, or supported by TeleSign. The author(s) do not own or claim any rights to the TeleSign trademark, name, or branding. "TeleSign" and any associated logos are trademarks of TeleSign Corporation.

This project is provided "as is" without warranty of any kind. Use at your own risk. For official TeleSign support not related to this MCP server, please contact TeleSign directly.

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Communication servers.