Kudosity MCP
chính thứcBuild with the Kudosity API to send SMS and MMS. Access developer docs, API references and live testing tools to send messages, manage contact lists, configure webhooks and more.
The Kudosity Model Context Protocol (MCP) server 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.
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
MCP Server Capabilities
The Kudosity MCP server offers comprehensive tools for API discovery, documentation, code generation, and live execution:
🔍 API Discovery & Exploration
- list-specs — discover available messaging APIs (SMS, RCS, WhatsApp, etc.)
- list-endpoints — list all API paths and methods for a service
- get-endpoint — inspect supported methods and parameters for any path
- search-specs — search across specs for keywords or patterns
📋 API Schema & Documentation
- get-request-body — retrieve request body schema for any endpoint
- get-response-schema — view response schema for specific endpoints and status codes
- list-security-schemes — check authentication methods and requirements
- search-documentation — search API documentation content
⚡ Code Generation
- get-code-snippet — generate ready-to-run examples in curl, JavaScript, Python, etc.
- Provides proper authentication and parameters automatically
🚀 Live API Execution
- execute-request — run real API calls using HAR format
- Send test SMS messages
- Validate any Kudosity endpoint with live credentials
- Returns actual responses and errors
Available APIs
The MCP server provides access to these Kudosity APIs:
- Transmit Message API — v2 messaging service supporting SMS, RCS, MMS, WhatsApp, and webhooks
- 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-keyheader
For v1 endpoints (api.transmitsms.com) - Basic Authentication:
- Get your credentials from Kudosity dashboard → Developers → API Settings
- Combine as:
API_KEY:API_SECRET - Base64 encode:
- Terminal:
echo -n "API_KEY:API_SECRET" | base64 - Browser console:
btoa("API_KEY:API_SECRET") - Online tool: base64encode.org
- Terminal:
For v2 endpoints (api.transmitmessage.com) - API Key Authentication:
Use your API Key directly in the x-api-key header (no Base64 encoding required).
For v1 endpoints (api.transmitsms.com) - Add toclaude_desktop_config.json:
JSON
{
"mcpServers": {
"kudosity": {
"command": "npx",
"args": [
"mcp-remote",
"https://developers.kudosity.com/mcp",
"--header",
"Authorization: Basic ${KUDOSITY_AUTH_HEADER}"
],
"env": {
"KUDOSITY_AUTH_HEADER": "YOUR_BASE64_ENCODED_CREDENTIALS"
}
}
}
}
Important: Restart your AI tool after saving the configuration file.
You can also install the Claude MCP integration for this project using:
Bash
claude mcp add kudosity --scope project -- npx mcp-remote https://developers.kudosity.com/mcp
Testing Your MCP Setup
Once configured, you can test your MCP server connection:
- Restart your AI tool (Claude Desktop, Cursor, etc.)
- Start a new chat with the AI assistant
- Ask about Kudosity — try questions like:
- "What APIs does Kudosity offer?"
- "Show me an example of sending an SMS"
- "Create a curl command to send my first SMS through Kudosity"
- "How do I get started sending SMS with Kudosity"
If successful, the AI will respond with Kudosity API details and sample code pulled directly from your account and documentation.
Updated about 2 months ago
Copy Page
Máy chủ liên quan
mcp-whatsapp
Local MCP server for a personal WhatsApp account. Single Go binary wrapping whatsmeow. Adds LID resolution, sent-message storage, disappearing-message timers, targeted history sync. Personal-use; Meta ToS applies.
News Feed
A news feed server for aggregating news from various sources.
MCP gRPC Transport
A gRPC transport for MCP, enabling communication between clients and remote MCP servers.
Telegram MCP Server
Interact with a Telegram account using the user client API, allowing AI assistants to manage chats and messages.
Zoom MCP Server
Schedule and manage Zoom meetings with AI assistance. Requires Zoom API credentials for configuration.
MCP Server for Intercom
Access and analyze customer support data from Intercom.
wecom-docs-mcp-server
WeCom (Enterprise WeChat) document operations via MCP — create, read, and edit Docs and Smartsheets. 9 tools. Fills the doc-CRUD gap: existing WeCom MCP servers only support webhook messaging
TIDAL MCP: My Custom Picks
Personalized music recommendations and playlist management for TIDAL, powered by its API and LLM filtering.
Human-in-the-Loop Slack MCP Server
Allows AI assistants to request information and receive responses from humans via Slack.
ClickSend MCP Server
Send SMS messages and make Text-to-Speech (TTS) calls using the ClickSend API.