Kudosity

Created By
Kudositya day ago
Official Kudosity Model Context Protocol (MCP) server that allows AI-powered editors (like Cursor and Windsurf) and assistants (like Claude Desktop) to directly explore and execute Kudosity APIs. With MCP, your AI can search API specs, generate code snippets, and run live requests; all without leaving your development environment.
Overview

Overview

What is MCP?

Model Context Protocol (MCP) is an open standard that allows AI applications to securely access external data sources and tools. The Kudosity MCP server provides AI agents with:

  • Direct API access to Kudosity functionality — send messages, update contact lists, etc.
  • Documentation search — have your AI intelligently search API specs and tutorials to provide on-point answers.
  • Real-time data from your Kudosity account — query and execute live operations directly from chat.
  • Code generation for Kudosity integrations
  • Live API execution — beyond static examples, run real requests
  • Always up-to-date — powered by Swagger API source definitions

Available APIs

The MCP server provides access to these Kudosity APIs:

  1. Transmit Message API — v2 messaging service supporting SMS, RCS, MMS, WhatsApp, and webhooks

  2. Transmit SMS API — full-featured SMS with advanced contact lists, keywords, and reporting

Kudosity MCP Server Setup

Kudosity hosts a remote MCP server at: https://developers.kudosity.com/mcp

Configure your AI development tools to connect to this server.

Authentication Configuration

For APIs that require authentication, you'll need to configure your API credentials. Depending on the endpoints, the methods differ:

  • api.transmitsms.com (v1 endpoints) — Basic Authentication with Base64-encoded API Key and Secret

  • api.transmitmessage.com (v2 endpoints) — API Key Authentication with your key in the x-api-key header

For v1 endpoints (api.transmitsms.com) - Basic Authentication:

  1. Get your credentials from Kudosity dashboard → Developers → API Settings
  2. Combine as: API_KEY:API_SECRET
  3. Base64 encode:
    1. Terminal: echo -n "API_KEY:API_SECRET" | base64
    1. Browser console: btoa("API_KEY:API_SECRET")
    1. Online tool: base64encode.org

For v2 endpoints (api.transmitmessage.com) - API Key Authentication:

  • Use your API Key directly in the x-api-key header (no Base64 encoding required).

Server Config

{
  "mcpServers": {
    "kudosity": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://developers.kudosity.com/mcp",
        "--header",
        "x-api-key: ${KUDOSITY_API_KEY}"
      ],
      "env": {
        "KUDOSITY_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}
Project Info
Created At
a day ago
Updated At
a day ago
Author Name
Kudosity
Star
-
Language
-
License
-
Category
Tags

Recommend Servers

View All
Tavily Mcp
@tavily-ai

JavaScript
a year ago