Back to Browse

Mcp MCP Server

Developer ToolsModerate5.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Send SMS, MMS and WhatsApp, manage contacts and webhooks, from AI agents.

About

Send SMS, MMS and WhatsApp, manage contacts and webhooks, from AI agents.

Security Report

5.2
Moderate5.2Moderate Risk

This MCP server implements proper authentication, validates inputs with Zod, and handles credentials securely via environment variables. The codebase is well-structured with clear separation between v2 and v1 APIs, appropriate error handling, and no malicious patterns detected. Minor code quality observations around broad exception handling and HTTP Basic auth encoding do not materially impact security. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.

7 files analyzed · 8 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

network_https

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Your Kudosity API key (Settings → API Settings).Required

Environment variable: KUDOSITY_API_KEY

Your Kudosity API secret. Required only for contact-list and balance tools.Required

Environment variable: KUDOSITY_API_SECRET

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "com-kudosity-mcp": {
      "env": {
        "KUDOSITY_API_KEY": "your-kudosity-api-key-here",
        "KUDOSITY_API_SECRET": "your-kudosity-api-secret-here"
      },
      "args": [
        "-y",
        "kudosity-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Kudosity MCP Server

An installable Model Context Protocol server that gives AI agents native tools to send SMS, MMS and WhatsApp messages, manage contacts and webhooks, and research the Kudosity API — powered by Kudosity.

Runs locally (or in your own infrastructure), authenticates with your Kudosity API key, and exposes one clean tool per action — so an agent calls send_sms instead of hand-building HTTP requests.

Tools

Messaging

ToolTypeDescription
send_smswriteSend an SMS to a recipient
send_mmswriteSend an MMS with a media attachment
send_whatsappwriteSend a WhatsApp message (free-form text or approved template)
get_messagereadGet a sent message and its status by channel + ID
list_messagesreadList sent/received messages with delivery status; filter by status, direction (sent/replies), recipient, dates

Webhooks

ToolTypeDescription
create_webhookwriteRegister an HTTPS webhook for delivery status, inbound messages, link hits, opt-outs
list_webhooksreadList configured webhooks
delete_webhookwriteDelete a webhook by ID

Contacts & lists (require KUDOSITY_API_SECRET)

ToolTypeDescription
create_listwriteCreate a contact list
get_listsreadList all contact lists
get_listreadGet a list and optionally its members
add_contact_to_listwriteAdd a contact to a list
remove_contact_from_listwriteRemove a contact from a list
delete_listwriteDelete a contact list

Account (requires KUDOSITY_API_SECRET)

ToolTypeDescription
get_balancereadGet your account balance

API discovery — research the whole Kudosity API, always current

ToolTypeDescription
list_specsreadList the Kudosity API specifications
list_endpointsreadList all endpoints for a spec
search_endpointsreadSearch the API by keyword
get_endpointreadGet full detail for one endpoint

The discovery tools read the live specs from developers.kudosity.com, so they always reflect the latest published docs.

Requirements

  • Node.js 18+
  • A Kudosity account and API key — Settings → API Settings in the Kudosity platform
  • For contact and balance tools, also your API secret (same settings page)

Install & configure

Runs via npx — no clone required.

Claude Desktop / Claude Code

{
  "mcpServers": {
    "kudosity": {
      "command": "npx",
      "args": ["-y", "kudosity-mcp"],
      "env": {
        "KUDOSITY_API_KEY": "your_api_key",
        "KUDOSITY_API_SECRET": "your_api_secret"
      }
    }
  }
}

KUDOSITY_API_SECRET is optional — omit it if you only need messaging, webhooks, and discovery. It's required for the contact-list and balance tools.

Cursor — .cursor/mcp.json

{
  "mcpServers": {
    "kudosity": {
      "command": "npx",
      "args": ["-y", "kudosity-mcp"],
      "env": { "KUDOSITY_API_KEY": "your_api_key", "KUDOSITY_API_SECRET": "your_api_secret" }
    }
  }
}

VS Code — .vscode/mcp.json

{
  "servers": {
    "kudosity": {
      "command": "npx",
      "args": ["-y", "kudosity-mcp"],
      "env": { "KUDOSITY_API_KEY": "your_api_key", "KUDOSITY_API_SECRET": "your_api_secret" }
    }
  }
}

Usage examples

  • "Send an SMS to 61438333061 from KudosityDemo saying the order shipped."
  • "Send the order_status_sample WhatsApp template to 61411122211."
  • "List my delivered SMS from the last day." / "Show me inbound SMS replies."
  • "Create a contact list called VIPs and add 61438333061."
  • "Register a webhook at https://example.com/hook for SMS delivery status."
  • "What's my account balance?"
  • "Search the Kudosity API for anything about opt-outs."

Authentication

Kudosity has two API surfaces, and this server uses each where it's authoritative:

ToolsAuthCredentials
Messaging, webhooks, discoveryx-api-key headerKUDOSITY_API_KEY
Contact lists, balanceHTTP BasicKUDOSITY_API_KEY + KUDOSITY_API_SECRET

Credentials are read from environment variables and never written to disk. Treat them as secrets.

Configuration

Env varRequiredDefaultDescription
KUDOSITY_API_KEYyesYour Kudosity API key
KUDOSITY_API_SECRETfor contacts/balanceYour Kudosity API secret
KUDOSITY_API_BASE_URLnohttps://api.transmitmessage.comOverride the v2 API base URL
KUDOSITY_V1_BASE_URLnohttps://api.transmitsms.comOverride the v1 API base URL

Local development

git clone https://github.com/kudosity/mcp
cd mcp
npm install
npm run build
KUDOSITY_API_KEY=your_api_key npm start

Test tool listing with the MCP Inspector, or run the checks:

npm test              # mock integration tests (no credentials)
node test/discovery-test.mjs   # live spec-discovery test (no credentials)

License

MIT

Reviews

No reviews yet

Be the first to review this server!