LigueLead MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@LigueLead MCP ServerSend an SMS to 11987654321 saying the delivery is on its way."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
đ± LigueLead MCP Server
MCP Server for sending SMS, SMS Flash, and voice calls in Brazil via the LigueLead API. Enable Claude, Cursor, Windsurf, and any MCP-compatible AI agent to send real communications â no code, no complex setup.
đ§đ· Brazilian CPaaS · BRL pricing · PIX payments · PT-BR support
Available tools
Tool | Description |
| Send SMS or SMS Flash campaign to Brazilian phone numbers |
| List all uploaded voice audio files |
| Get details of a specific voice upload |
| Upload MP3/WAV audio for voice campaigns |
| Send a voice campaign to a list of phones |
Quick start
Option 1: npx (recommended)
No installation needed â just add to your MCP client config:
{
"mcpServers": {
"liguelead": {
"command": "npx",
"args": ["-y", "@liguelead/mcp-server"],
"env": {
"LIGUELEAD_API_TOKEN": "your-token",
"LIGUELEAD_APP_ID": "your-app-id",
"TRANSPORT": "stdio"
}
}
}
}Option 2: Clone & build
git clone https://github.com/liguelead/mcp.git
cd mcp
npm install
cp .env.example .env # Edit with your credentials
npm run build
npm startThe server starts at http://localhost:3000 by default.
Getting your credentials
Navigate to IntegraçÔes â API Token
Create an App and copy the API Token and App ID
Transports
Transport | Use case | Env var |
Streamable HTTP (default) | Remote server, any MCP client |
|
stdio | Local â Claude Desktop / Claude Code / Cursor |
|
Client configuration
Claude Desktop (stdio)
Edit claude_desktop_config.json:
{
"mcpServers": {
"liguelead": {
"command": "npx",
"args": ["-y", "@liguelead/mcp-server"],
"env": {
"LIGUELEAD_API_TOKEN": "your-token",
"LIGUELEAD_APP_ID": "your-app-id",
"TRANSPORT": "stdio"
}
}
}
}Claude Code
claude mcp add -s user liguelead \
-e LIGUELEAD_API_TOKEN=your-token \
-e LIGUELEAD_APP_ID=your-app-id \
-e TRANSPORT=stdio \
-- npx -y @liguelead/mcp-serverCursor / Windsurf
Add to your MCP settings with the same configuration as Claude Desktop above.
Remote HTTP server
Any MCP client that supports Streamable HTTP can connect via:
POST https://your-server.com/mcpCredentials stay on the server â the client doesn't need them.
mcp-remote bridge
For clients that don't support HTTP natively (e.g., Claude Desktop connecting to a remote server):
{
"mcpServers": {
"liguelead": {
"command": "npx",
"args": ["mcp-remote", "https://your-server.com/mcp"]
}
}
}Deploy
Docker
docker build -t liguelead-mcp .
docker run -d -p 3000:3000 \
-e LIGUELEAD_API_TOKEN=your-token \
-e LIGUELEAD_APP_ID=your-app-id \
liguelead-mcpRailway / Render
Connect the Git repository
Set environment variables:
LIGUELEAD_API_TOKEN,LIGUELEAD_APP_IDBuild command:
npm install && npm run buildStart command:
npm start
Credential security
Scenario | Where credentials live |
stdio (local) | Environment variables in client config |
HTTP (remote) | Environment variables on the server |
Docker |
|
CI/CD | Provider secrets (GitHub Actions, etc.) |
â ïž Credentials are NEVER committed to code. The .env file is in .gitignore.
Webhook
Setup
Navigate to IntegraçÔes â API Token â Webhook URL
Enter your public HTTPS endpoint URL
Save
A single URL receives notifications for all channels (SMS, SMS Flash, Voice).
Query received webhooks
curl http://localhost:3000/webhooksReturns:
{
"total": 42,
"webhooks": [...]
}â ïž CRITICAL: LigueLead does NOT retry failed webhooks. If your endpoint is down, the webhook is lost permanently.
Phone number format
Brazilian phone numbers are accepted in three formats:
Format | Example | Digits |
National (recommended) |
| 11 |
International |
| 14 chars |
DDI without |
| 13 |
SMS limits
Part | Characters | Credits |
1st part | up to 160 | 1 credit |
Additional parts | every 152 chars | 1 credit each |
Maximum total | 1,600 chars | ~11 credits |
đ« SMS Flash does NOT allow URLs in message content.
Voice call limits
Supported formats: MP3 and WAV (no AAC/M4A)
Max file size: 50 MB (recommended: 5â10 MB)
Billing: Up to 30s = 1 credit; over 30s = 2 credits
Dialing window: 08:00â21:44 (America/Sao_Paulo). Requests after 21:45 are queued until 08:00.
Rate limits
Limit | Value |
Requests per minute | 600,000 |
Simultaneous requests | 10,000 |
Recipients per request | 10,000 |
Project structure
liguelead-mcp/
âââ src/
â âââ index.ts # Entry point â HTTP or stdio
â âââ config.ts # Env var validation (Zod) + .env loader
â âââ lib/
â â âââ api-client.ts # HTTP client for LigueLead API
â â âââ validators.ts # Brazilian phone schemas (Zod)
â â âââ webhook.ts # Webhook handler + GET /webhooks
â âââ tools/
â âââ sms.ts # Tool: send_sms
â âââ voice.ts # Tools: voice (list/get/upload/send)
âââ skill/ # Claude Code Skill
â âââ SKILL.md
âââ .env.example
âââ Dockerfile
âââ LICENSE
âââ package.json
âââ server.json
âââ glama.json
âââ README.mdTroubleshooting
Problem | Solution |
| Set up |
| Check api-token and app-id in LigueLead panel |
| Rate limit exceeded â wait for reset |
Upload rejected | Only MP3 and WAV accepted (no AAC/M4A) |
Stale build |
|
License
MIT
đ§đ· Documentação em PortuguĂȘs
LigueLead MCP Server
MCP Server para a API da LigueLead â SMS, SMS Flash e Campanhas de Voz no Brasil.
Permite que Claude, Cursor, Windsurf e qualquer agente de IA compatĂvel com MCP enviem comunicaçÔes reais â sem cĂłdigo, sem setup complexo.
CPaaS Brasileiro · Preço em BRL · Pagamento via PIX · Suporte em PT-BR
InĂcio rĂĄpido
Opção 1: npx (recomendado)
Sem instalação â basta adicionar Ă config do seu cliente MCP:
{
"mcpServers": {
"liguelead": {
"command": "npx",
"args": ["-y", "@liguelead/mcp-server"],
"env": {
"LIGUELEAD_API_TOKEN": "seu-token",
"LIGUELEAD_APP_ID": "seu-app-id",
"TRANSPORT": "stdio"
}
}
}
}Opção 2: Clone & build
git clone https://github.com/liguelead/mcp.git
cd mcp
npm install
cp .env.example .env # Edite com suas credenciais
npm run build
npm startObtendo suas credenciais
VĂĄ em IntegraçÔes â API Token
Crie um App e copie o API Token e App ID
Tools disponĂveis
Tool | Descrição |
| Envia campanha de SMS ou SMS Flash para nĂșmeros brasileiros |
| Lista todos os ĂĄudios enviados |
| Detalhes de um ĂĄudio especĂfico |
| Upload de ĂĄudio MP3/WAV para campanhas de voz |
| Dispara campanha de voz para lista de telefones |
Configuração por cliente MCP
Claude Desktop (stdio)
Edite claude_desktop_config.json:
{
"mcpServers": {
"liguelead": {
"command": "npx",
"args": ["-y", "@liguelead/mcp-server"],
"env": {
"LIGUELEAD_API_TOKEN": "seu-token",
"LIGUELEAD_APP_ID": "seu-app-id",
"TRANSPORT": "stdio"
}
}
}
}Claude Code
claude mcp add -s user liguelead \
-e LIGUELEAD_API_TOKEN=seu-token \
-e LIGUELEAD_APP_ID=seu-app-id \
-e TRANSPORT=stdio \
-- npx -y @liguelead/mcp-serverFormato de nĂșmeros de telefone
Formato | Exemplo | DĂgitos |
Nacional (recomendado) |
| 11 |
Internacional |
| 14 chars |
DDI sem |
| 13 |
Limites de SMS
Parte | Caracteres | Créditos |
1ÂȘ parte | atĂ© 160 | 1 crĂ©dito |
Partes adicionais | a cada 152 chars | 1 crédito cada |
Måximo total | 1.600 chars | ~11 créditos |
đ« SMS Flash NĂO permite URLs no conteĂșdo da mensagem.
Limites de voz
Formatos suportados: MP3 e WAV (AAC e M4A nĂŁo sĂŁo suportados)
Tamanho mĂĄximo: 50 MB (recomendado: 5â10 MB)
Cobrança: Até 30s = 1 crédito; acima de 30s = 2 créditos
Janela de discagem: 08h00â21h44 (America/Sao_Paulo). Requests apĂłs 21h45 ficam na fila atĂ© as 08h00.
Webhook
VĂĄ em IntegraçÔes â API Token â Webhook URL
Insira a URL HTTPS do seu endpoint
Salve
Uma Ășnica URL recebe notificaçÔes de todos os canais (SMS, SMS Flash, Voz).
â ïž CRĂTICO: LigueLead NĂO faz retry. Se o endpoint falhar, o webhook Ă© perdido permanentemente.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/liguelead/mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server