Connect Convic's MCP server to Claude — in claude.ai, Claude Desktop, Claude Code, or your own app on the Anthropic API — and let your AI agent send messages, triage conversations, search contacts, launch campaigns, and build entire chatbot flows. No dashboard required. Just plain language, in, and WhatsApp actions, out.
The Model Context Protocol is an open standard that lets an AI assistant call real tools — not guess, not hallucinate a response, but actually reach into a live system and do something. Convic exposes its WhatsApp platform as an MCP server, so any MCP-capable client can read your conversations, send real messages, and manage real chatbot flows on your behalf.
You stay in control: every tool acts only inside your connected workspace, and every action is the same one your team could take from the Convic dashboard — just triggered by a sentence instead of a click.
Each tool is scoped to a specific job — no single call can do more than a human on your team could do from the dashboard.
send_whatsappSend a text or media message to any contact — finds or creates the conversation automatically.
send_templateSend an approved template outside the 24-hour window, with variable substitution.
list_conversationsPull open conversations, filter by the 24-hour reply window, or search by contact.
search_contactsFind contacts by name, phone, email, company, tag, or status.
list_templatesBrowse approved, pending, or rejected templates by category.
upload_mediaRegister an image, video, audio, or document for use across messages and templates.
create_chatbotBuild a new legacy or branching chain — stages, options, validation, and API calls included.
update_chatbotEdit an existing chain's stages, triggers, or status without starting from scratch.
get_chatbotsList every chain in the workspace, or fetch one chain's full structure by ID.
analyticsPull completion stats and per-stage drop-off for any chatbot flow.
The agent narrates which tool it's calling and what it found, then asks before anything irreversible goes out — the same judgment you'd expect from a careful teammate.
claude.ai, Claude Desktop, Claude Code, or a custom app on the Anthropic API
The open protocol that carries tool calls and results between client and server
Exposes messaging, CRM, and chatbot-building tools scoped to your workspace
Where every action actually lands — real messages, real contacts, real chains
No new account, no separate login — it uses the workspace you already have.
Get your MCP URLFrom Settings → Integrations, generate a workspace-scoped MCP endpoint. It's unique to your account and can be revoked at any time.
In claude.ai or Claude Desktop, add it under Connectors. In Claude Code, register it as an MCP server. In your own app, pass it via the mcp_servers parameter on the Anthropic API.
Approve the connection once — your AI client now sees Convic's tools alongside anything else it's connected to.
"Show me today's unread chats" or "build a 4-step feedback flow" — the agent picks the right tool and asks before sending anything irreversible.
Pass Convic's MCP endpoint straight into an Anthropic API call and Claude gets access to your WhatsApp tools inside your own application — a support console, an internal ops bot, anything.
await fetch("https://api.anthropic.com/v1/messages", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
model: "claude-sonnet-4-6",
max_tokens: 1000,
messages: [
{ role: "user", content: "Reply to Ramesh about his delayed order." }
],
mcp_servers: [
{
type: "url",
url: "https://convic.in/api/mcp",
name: "convic-mcp"
}
]
})
});The MCP endpoint only sees the workspace it was generated for — never another account, never another number.
Rotate or disable your MCP URL from Settings instantly. Every connected client loses access immediately.
Tool calls respect the exact same role-based permissions your dashboard already enforces.
Every message sent, contact searched, or chain edited through MCP is logged like any other action.
Well-behaved MCP clients like Claude ask before broadcasting or deleting — you're always the last check.
Every tool call still runs through Convic's own Meta-compliant messaging layer — nothing bypasses policy.
Connect Convic to Claude and hand off the repetitive parts of WhatsApp — while you keep every decision that matters.
No new account needed·Revoke anytime·Works with any MCP client