Hellio Messaging MCP server

Hellio Messaging MCP server

Exposes the Hellio Messaging API as MCP tools for SMS, OTP, voice, HLR lookup, email verification, balance, pricing, webhooks, and USSD operations.

Category
Visit Server

README

Hellio Messaging MCP server

A Model Context Protocol server that exposes the Hellio Messaging API to any MCP-capable AI client (Claude Desktop, Claude Code, Cursor, and others).

It maps every Hellio API operation to a tool: SMS, OTP, voice, HLR lookup, email verification, balance and pricing, webhooks, and the full USSD suite (apps, extensions, sessions, sandbox simulation). 28 tools in total.

Requirements

  • Node.js 18 or newer
  • A Hellio Sanctum personal access token. Its scopes decide which tools can succeed.

Build

cd mcp-server
npm install
npm run build

This compiles to dist/. The entrypoint is dist/index.js.

Configuration

The server reads two environment variables:

Variable Required Default Notes
HELLIO_API_TOKEN yes - Your Sanctum bearer token.
HELLIO_API_BASE_URL no https://api.helliomessaging.com Override to point at staging or local.

Copy .env.example to .env for local testing, or pass the variables through your MCP client config (below).

Connect it to a client

Claude Desktop

Edit claude_desktop_config.json (Settings, Developer, Edit Config) and add:

{
  "mcpServers": {
    "hellio": {
      "command": "node",
      "args": ["/absolute/path/to/hellio-v2/mcp-server/dist/index.js"],
      "env": {
        "HELLIO_API_TOKEN": "your-token-here"
      }
    }
  }
}

Restart Claude Desktop. The Hellio tools appear under the tools menu.

Claude Code

claude mcp add hellio \
  --env HELLIO_API_TOKEN=your-token-here \
  -- node /absolute/path/to/hellio-v2/mcp-server/dist/index.js

Try it

Use the MCP Inspector to click through the tools without a full client:

npm run inspect

Then set HELLIO_API_TOKEN in the Inspector's environment panel and call, for example, hellio_get_balance.

Tools

Read-only (safe to call freely):

  • hellio_get_balance, hellio_get_pricing
  • hellio_list_messages, hellio_get_message, hellio_list_campaigns, hellio_get_campaign
  • hellio_list_webhooks
  • hellio_ussd_get_pricing, hellio_ussd_check_extension_availability
  • hellio_ussd_list_apps, hellio_ussd_list_extensions
  • hellio_ussd_list_sessions, hellio_ussd_get_session

Writes that charge your account (each description begins with "Deducts from your"):

  • hellio_send_sms, hellio_send_otp, hellio_send_voice
  • hellio_lookup_numbers, hellio_verify_email
  • hellio_ussd_rent_extension

Other writes:

  • hellio_verify_otp, hellio_create_webhook
  • hellio_ussd_create_app, hellio_ussd_update_app, hellio_ussd_delete_app
  • hellio_ussd_switch_app_mode, hellio_ussd_rotate_app_secret, hellio_ussd_release_extension
  • hellio_ussd_simulate

Safety notes

  • Billable sends attach an Idempotency-Key automatically, so a retried tool call replays the original response instead of double-charging.
  • Every tool carries MCP annotations (readOnlyHint, destructiveHint) so clients can gate or confirm the risky ones.
  • Which tools succeed depends on the token's scopes. A 403 or "insufficient scope" error means the token lacks that ability, not that the tool is broken.

Project layout

mcp-server/
  src/
    index.ts        server bootstrap, stdio transport
    config.ts       env loading
    client.ts       authenticated HTTP wrapper + idempotency
    format.ts       tool result helpers
    tools/          one file per API domain
  dist/             compiled output (generated)

To add a tool, add it to the matching file in src/tools/ and rebuild.

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured