Back to blog
GuidesFeatures

Send and Manage Messages with the Pinnacle MCP

The Pinnacle MCP server gives AI agents 95 tools to send messages, manage conversations, run blasts, and more — without writing a line of API code.

Ivan

·7 min read
Send and Manage Messages with the Pinnacle MCP

Your AI agent can now send a text message. Not by calling a function you wrote — by picking up the phone itself.

The Pinnacle MCP server is a Model Context Protocol server that exposes 95 tools covering the full Pinnacle platform. Claude, Cursor, Codex, or any other MCP-compatible agent can send messages, manage conversations, spin up audiences, fire blasts, check compliance status, and more — all through tool calls, no glue code required.

What is MCP?

Model Context Protocol (MCP) is an open standard that lets AI assistants talk to external services through a structured tool interface. Think of it as the API layer between "an AI that can reason" and "a system that can act."

With Pinnacle's MCP server, you connect once and your AI agent gets direct access to your messaging infrastructure. No custom function wrappers. No prompt engineering to format API payloads. Just tools the agent can call by name.

Setup in 60 Seconds

Cursor (Remote — recommended)

Add to .cursor/mcp.json:

JSON
{
  "mcpServers": {
    "pinnacle": {
      "url": "https://mcp.pinnacle.sh/mcp",
      "headers": {
        "PINNACLE-API-KEY": "pnclk_..."
      }
    }
  }
}

No install needed — Cursor connects directly to Pinnacle's hosted MCP server.

Claude Code

Bash
claude mcp add pinnacle --transport http https://mcp.pinnacle.sh/mcp \
  -H "PINNACLE-API-KEY: pnclk_..."

Claude Desktop (Local)

Add to your Claude config (claude_desktop_config.json):

JSON
{
  "mcpServers": {
    "pinnacle": {
      "command": "npx",
      "args": ["@pinnacle-rcs/mcp"],
      "env": {
        "PINNACLE_API_KEY": "pnclk_..."
      }
    }
  }
}

What the 95 Tools Cover

Messaging

The core: send any channel to any recipient.

ToolWhat it does
send_smsSend a plain-text SMS
send_mmsSend MMS with images, video, or files
send_rcsSend RCS with cards, carousels, quick replies, and buttons
send_typing_indicatorShow a typing indicator to the recipient
react_to_messageReact to a message with an emoji
validate_smsCheck SMS payload before sending
validate_mmsCheck MMS payload before sending
validate_rcsCheck RCS payload before sending

Conversations

Manage live message threads.

ToolWhat it does
list_conversationsList all conversations with filters
get_conversationGet a single conversation
update_conversationMark as read, archive, or assign metadata
list_conversation_messagesPaginate messages in a thread
list_messagesQuery messages across all conversations
get_messageFetch a specific message with full payload

Contacts

Your contact book as a tool.

ToolWhat it does
create_contactCreate a contact with name and metadata
upsert_contact_cardSet or update a contact card
update_contactEdit contact fields
get_contactFetch a contact by phone number or ID
list_contactsList contacts with search and filters

Audiences and Blasts

Reach segments at scale.

ToolWhat it does
create_audienceCreate a named audience with contact IDs
add_audience_contactsAppend contacts to an existing audience
remove_audience_contactsRemove contacts from an audience
update_audienceRename or modify audience metadata
delete_audienceDelete an audience
list_audiencesList all audiences
blast_smsSend SMS to an entire audience
blast_mmsSend MMS to an entire audience
blast_rcsSend RCS to an entire audience
list_blastsList all past blasts with stats

Phone Numbers

ToolWhat it does
search_phone_numbersSearch available numbers by area code or pattern
buy_phone_numbersPurchase a number
list_phone_numbersList owned numbers
get_phone_number_detailsGet metadata for a specific number
get_phone_number_statusCheck registration and compliance status

RCS Agents and Testing

ToolWhat it does
list_agentsList your RCS agents
create_test_agentCreate a sandbox test agent
get_test_agentFetch test agent details
update_test_agentModify test agent config
whitelist_test_agentWhitelist a number for sandbox testing
get_rcs_capabilitiesCheck if a number can receive RCS
generate_rcs_linkGenerate a deep link to open an RCS conversation

Brands and Compliance

ToolWhat it does
get_brandFetch brand registration details
autofill_brandAuto-fill brand fields from website or EIN
validate_brandCheck brand registration for errors
vet_brandPre-screen brand before formal submission
submit_brandSubmit brand for 10DLC registration
upsert_brandCreate or update a brand

Similar tools exist for 10DLC campaigns (upsert_dlc_campaign, submit_dlc_campaign, get_dlc_campaign_status), RCS campaigns (upsert_rcs_campaign, submit_rcs_campaign), and toll-free campaigns.

Webhooks and Utilities

ToolWhat it does
get_webhooksList configured webhooks
attach_webhookRegister a new webhook endpoint
detach_webhookRemove a webhook
create_shortened_urlCreate a tracked short link
get_shortened_urlFetch click stats for a short link
upload_fileUpload a media file for use in messages
search_pinnacle_docsSearch Pinnacle documentation
cancel_scheduled_messageCancel a scheduled message

Real Agent Workflows

Automated Appointment Reminders

"Create an audience from the list of patients with appointments tomorrow, then blast them an RCS message with a Confirm and Reschedule button."

The agent will: create the audience → blast RCS with quick reply buttons → return delivery stats. You write zero code. View results in the analytics dashboard.

Inbound Lead Qualification

"Check the last 20 conversations for anyone who said 'interested' or 'how much'. Send them an SMS with our pricing page link."

The agent will: list conversations → filter by keyword → send SMS with link → summarize what it sent. Track all threads in the conversations dashboard.

Compliance Setup

"I need to register a 10DLC brand for my company. Our website is acme.com."

The agent will: call autofill_brand to pull your EIN and company details from your website → validate → walk you through approval step by step. Manage your brand from the brands dashboard.

Send a Quick Test Message

"Send an RCS message to my test number +14155551234 with a card showing our new product launch."

Done. No SDK, no API docs, no JSON to format.

Key Takeaways

  • Pinnacle's MCP server has 95 tools covering messaging, conversations, contacts, audiences, blasts, phone numbers, RCS agents, brands, compliance, webhooks, and more.
  • Setup takes one config entry in Claude Desktop, Cursor, or any MCP host.
  • Agents can execute multi-step workflows — audience creation, blast, status check — autonomously.
  • The search_pinnacle_docs tool means your agent can look up API behavior on the fly.

FAQ

1. Which AI clients support MCP? Claude Desktop, Claude.ai, Cursor, Cline, Codex, and any application that implements the MCP client spec. The list is growing fast.

2. Is my API key safe in the MCP config? Your API key is stored in your local config file and passed as an environment variable to the MCP server process — it's never sent to the AI model itself.

3. Can I use the MCP server in production automation? Yes. You can run the Pinnacle MCP server as a sidecar process in your agent infrastructure. Point your MCP client at it and your agent can message users as part of any workflow.

4. What's the difference between using the MCP and the SDK? SDK is for programmatic control in your code. MCP is for AI agents that reason about what to send and when. They're complementary.

5. How do I get a Pinnacle API key? Sign up at app.pinnacle.sh, then navigate to Settings → API Keys in the dashboard.

Book a 30-minute call with the Pinnacle team — we'll help you integrate Pinnacle into your AI agent stack and get you live fast.

© 2026 Pinnacle Software Development, Inc.