liguelead-api

liguelead-api is a skill for Claude Code, Codex from liguelead/mcp. It costs 83 tokens per session (3,063 once invoked), scanned A, original, MIT.

An integration guide for LigueLead, a Brazilian service for voice calls, SMS text messages, SMS Flash, and RCS messages. RCS is a richer messaging format that can include media, cards, and carousels.

In plain words
What is it for?
Use it to send calls and messaging campaigns, create and send RCS templates, and configure webhooks for campaign status.
Why use it?
It explains how to authenticate, format Brazilian phone numbers, send different message types, and receive campaign updates through webhooks.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/liguelead/mcp/skill
Any agent
npx skills add liguelead/mcp --skill skill
Clone the repo
git clone --depth 1 https://github.com/liguelead/mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for liguelead-api

README.md
[![agentmods](https://agentmods.dev/badge/skills/liguelead/mcp/skill.svg)](https://agentmods.dev/skills/liguelead/mcp/skill)
Your own site
<a href="https://agentmods.dev/skills/liguelead/mcp/skill"><img src="https://agentmods.dev/badge/skills/liguelead/mcp/skill.svg" alt="Measured on agentmods" height="20"></a>
Per session 83 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,063 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00083 $0.03063
Opus 5 $0.00042 $0.01532
Sonnet 5 $0.00017 $0.00613
Haiku 4.5 $0.00008 $0.00306

Measured 3d ago against content hash a1723d0dc874, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

liguelead-api scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST "https://api.liguelead.com.br/v1/voice/uploads" \
skill/SKILL.md · 367 lines

How it starts

The opening of the file, as written. The whole thing — 367 lines — stays where its author put it; the contents beside it link to each section on GitHub.

LigueLead API – Integration Skill

Overview

LigueLead is a Brazilian communications platform for voice, SMS, and RCS. This skill covers:

  • Authentication via dual-header (api-token + app-id)
  • Voice calls (2-step process: upload audio → send campaign)
  • SMS (standard and Flash) in a single request
  • RCS (template creation — text/media/card/carousel — then send)
  • Webhooks for real-time campaign status

Base URL: https://api.liguelead.com.br/v1


1. Authentication

Every request requires two mandatory headers:

api-token: YOUR_API_TOKEN
app-id:    YOUR_APP_ID
Content-Type: application/json

Where to get them: LigueLead Dashboard → Integrações → API Token (areadocliente.liguelead.app.br)

⚠️ Never expose api-token or app-id in client-side code. Use environment variables.


2. Phone number format

The API accepts three Brazilian phone number formats:

Format Example Digits
National (recommended) 11999999999 11
International +5511999999999 14 chars
DDI without + 5511999999999 13

Recommendation: use the national format (11 digits) for best compatibility.


3. Sending voice calls

Voice sending is a 2-step process.

Step 1 — Upload audio

POST /v1/voice/uploadsmultipart/form-data

curl -X POST "https://api.liguelead.com.br/v1/voice/uploads" \
  -H "api-token: YOUR_API_TOKEN" \
  -H "app-id: YOUR_APP_ID" \
  -F "title=My Message" \
  -F "file=@/path/to/audio.mp3"

Response (201):

{
  "message": "Voice upload successful.",
  "data": {
    "id": 436514,
    "title": "My Message"
  }
}

Save the id — it's the voice_upload_id for the next step.

File limits:

  • Supported formats: MP3 and WAV (AAC and M4A not supported)
  • Max size: 50 MB (recommended: 5–10 MB)
  • Storage per account: 10 GB | Max 1,000 active files

Read the full file on GitHub · 367 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 367 lines · 83 tokens per session scan A a1723d0dc874

Subscribe to this mod's changes

liguelead-api is a skill published in the GitHub repository liguelead/mcp (1 stars, last pushed 1mo ago), licensed MIT. It adds 83 tokens to every session and 3,063 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

specflow-use

To connect Rosetta with Grid Dynamics SpecFlow MCP; only when SpecFlow is mentioned and the MCP is installed.

griddynamics/rosetta · 27 tokens

opik-diagnose

Surface the Opik traces worth a developer's attention, ranked by signal — errors, failed tool calls, latency, regressions, and low online-eval scores — plus Diagnostics issues. Reads live/production traces via the SDK (searchtraces and agentinsights) and works with no MCP; uses the MCP issue entity when connected.…

comet-ml/opik-mcp · 147 tokens

ue-mcp-epic-routing

Use when deciding between ue-mcp's native category actions and Epic's wrapped ToolsetRegistry tools (the epic actions, incl. the Blueprint graph DSL) for a task in Unreal. Pulls in when authoring Blueprint graph bodies, or any time both a native action and an epic action could do the job and you need to pick.

db-lyon/ue-mcp · 81 tokens

mcp-google-map-project

Project knowledge for developing and maintaining @cablate/mcp-google-map. Architecture, Google Maps API guide, GIS domain knowledge, and design decisions. Read this skill to onboard onto the project or make informed development decisions.

cablate/mcp-google-map · 49 tokens

authoring-decorators

Use when the user wants to write a new prompt decorator - either a personal one for their repo or a contribution back to the upstream catalogue. Walks through the JSON schema, the extensions/ convention, how to verify a new decorator end-to-end through the hook, and how to diagnose failures using debug logging and…

synaptiai/prompt-decorators · 72 tokens