Aerostack
electrical_services

Twilio MCP Server — Hosted Notifications Integration

MCP Server language Hosted language Public

Send SMS, make calls, and manage phone numbers via Twilio — add programmable communications to any AI workflow.

aerostack @aerostack verified
v0.1.0 MIT Updated Jun 28, 2026
robot_2

Use with AI AssistantsMCP

Connect Claude, Cursor, or any MCP-compatible client — then call tools directly

① Add This MCP Server

Paste into your AI client config — then all its tools are available instantly.

.claude/mcp.json
{
  "mcpServers": {
    "twilio": {
      "url": "https://mcp.aerostack.dev/s/aerostack/mcp-twilio",
      "headers": {
        "Authorization": "Bearer YOUR_AEROSTACK_TOKEN"
      }
    }
  }
}

Replace YOUR_AEROSTACK_TOKEN with your API token from the dashboard.

② Call a Tool

Ask your AI assistant to call a specific tool, or send raw JSON-RPC:

Natural Language Prompt

“Use the _ping tool to verify twilio credentials by calling a lightweight read endpoint. used internally by aerostack to validate credentials

Using a Workspace?

Add this MCP to your Workspace — your team shares one token, secrets are stored securely, and every AI agent in the workspace can call it without per-user setup.

add_circleAdd to Workspace

description Overview

mcp-twilio — Twilio MCP Server

Send SMS messages and manage phone numbers from your AI agents.

Twilio is the communications platform that powers SMS, voice, and messaging for tens of thousands of businesses. This MCP server lets your AI agents send text messages, look up message delivery history, and inspect the phone numbers on your account — making it easy to add SMS notifications or two-way messaging to any agent-driven workflow.

Live endpoint: https://mcp.aerostack.dev/s/aerostack/mcp-twilio


What You Can Do

  • Send SMS messages from any Twilio number to any recipient as part of automated notification or alert workflows
  • Check message delivery status and history to verify that critical notifications were received
  • List all phone numbers on the account to understand what numbers are available before building routing logic
  • Pull account balance and status to monitor spend or check if the account is active

Available Tools

Tool Description
send_sms Send an SMS message to a phone number
list_messages List sent and received messages with optional filters
get_message Get details of a specific message by SID
list_phone_numbers List purchased phone numbers on the account
get_account_info Get account balance and status

Configuration

Variable Required Description How to Get
TWILIO_ACCOUNT_SID Yes Twilio account SID (starts with AC) console.twilio.comDashboard → copy Account SID
TWILIO_AUTH_TOKEN Yes Twilio auth token Same page → copy Auth Token (click to reveal)

Quick Start

Add to Aerostack Workspace
  1. Go to aerostack.dev → Your Project → MCPs
  2. Search for "Twilio" and click Add to Workspace
  3. Add TWILIO_ACCOUNT_SID and TWILIO_AUTH_TOKEN under Project → Secrets

Once added, every AI agent in your workspace can call Twilio tools automatically — no per-user setup needed.

Example Prompts
"Send an SMS to +15551234567 saying: Your order has shipped and will arrive by Thursday"
"List the last 20 messages sent from our +18005551000 number in the last 24 hours"
"What's the current balance and status on our Twilio account?"
Direct API Call
curl -X POST https://mcp.aerostack.dev/s/aerostack/mcp-twilio \
  -H 'Content-Type: application/json' \
  -H 'X-Mcp-Secret-TWILIO-ACCOUNT-SID: ACyour-account-sid' \
  -H 'X-Mcp-Secret-TWILIO-AUTH-TOKEN: your-auth-token' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"send_sms","arguments":{"to":"+15551234567","from":"+18005551000","body":"Hello from Aerostack!"}}}'

License

MIT

terminal Tools (6)

Available tools on this MCP server. Each tool can be called directly from any AI agent.

terminal
_ping #1

Verify Twilio credentials by calling a lightweight read endpoint. Used internally by Aerostack to validate credentials.

terminal
send_sms #2

Send an SMS message via Twilio

terminal
list_messages #3

List SMS/MMS messages sent or received on the Twilio account

terminal
get_message #4

Get status and details of a specific Twilio message

terminal
list_phone_numbers #5

List phone numbers purchased/configured in the Twilio account

terminal
get_account_info #6

Get basic information about the Twilio account

Details

upgrade Version 0.1.0
gavel License MIT
wifi Transport streamable-http
lock Access Public
category Category Notifications
terminal Tools 6

language Live Endpoint

https://mcp.aerostack.dev/s/aerostack/mcp-twilio

Sub-50ms globally · Zero cold start

Publisher

aerostack
@aerostack verified

Pre-built functions for the most common MCP tool patterns. Clone, extend, and deploy.

Tags

Browse more servers

More in Notifications

Browse Notifications MCPs →

Frequently asked questions

What is the Twilio MCP server and what can it do? +

The Twilio MCP server is hosted on Aerostack and exposes these tools to your AI agent: `_ping`, `send_sms`, `list_messages`, `get_message`, `list_phone_numbers`. You get one hosted URL — no self-hosting — that works from Claude, Cursor, ChatGPT, Gemini, VS Code, or any MCP-compatible client, and you can share it with your team or combine it with other MCP servers in a workspace.

Is the Twilio MCP server hosted, or do I have to run it myself? +

It's hosted on Aerostack's edge infrastructure — you don't deploy or maintain anything. Add it to a workspace and you get one authenticated URL, with secrets encrypted, that any AI agent or editor can connect to. Use it solo or share the same URL across your whole team.

Which AI agents and editors can use the Twilio MCP server? +

Any MCP client: Claude and Claude Code, Cursor, ChatGPT, Gemini, Windsurf, Cline, VS Code, and custom agents. Because it's one hosted URL, the same Twilio MCP server works everywhere — and you can compose it with other MCP servers, skills, and functions behind a single workspace URL.

How do I install the Twilio MCP server in Claude Desktop? +

Add the following to your Claude Desktop config (`claude_desktop_config.json`): ```json { "mcpServers": { "@aerostack/mcp-twilio": { "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-twilio"] } } } ``` Then restart Claude Desktop and the tools will appear automatically.

How do I use the Twilio MCP server in Cursor? +

In Cursor, open **Settings → MCP** and add: ```json { "name": "@aerostack/mcp-twilio", "command": "npx", "args": ["-y", "@aerostack/@aerostack/mcp-twilio"] } ``` Save and reload Cursor. The MCP tools will be available in Agent mode.

Does Twilio MCP require authentication? +

Yes. Twilio requires authentication. Check the MCP's documentation for the required credentials.