Kudosity MCP
Build 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.
Ads
Overview
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. 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:
Installation
npx mcp-remote https://developers.kudosity.com/mcp --header Authorization: Basic ${KUDOSITY_AUTH_HEADER}Configuration
{
"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"
}
}
}
}Capabilities
- Discover available messaging APIs
ask your AI to list all Kudosity APIs (SMS, RCS, WhatsApp) using `list-specs`.
- Inspect API endpoints and parameters
have the assistant explore paths, methods, and supported parameters for any service with `list-endpoints` and `get-endpoint`.
- Retrieve request and response schemas
get the exact body format or response structure for an endpoint via `get-request-body` and `get-response-schema`.
- Generate ready-to-run code snippets
produce curl, JavaScript, or Python examples with proper auth using `get-code-snippet`.
- Execute live API calls
send real SMS or test any Kudosity endpoint directly from chat with `execute-request`.
Tags
- documentation
- document
- sms
- communication
- productivity
Related MCP servers
ElevenLabs
OfficialThe official ElevenLabs MCP server
Resend Email
OfficialSend emails directly from your editor using the Resend API.
AgentRPC
OfficialConnect to any function, any language, across network boundaries using AgentRPC.
Twilio
OfficialInteract with Twilio APIs to send messages, manage phone numbers, configure your account, and more.