KosmoKrator

communication

ClickSend MCP Gateway for AI Agents

Expose ClickSend tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.

10 functions 6 read 4 write API key auth

ClickSend MCP Gateway

Expose ClickSend to MCP clients with `kosmokrator mcp:serve --integration=clicksend`.

If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.

curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
kosmokrator mcp:gateway:install --integration=clicksend --write=deny --json
{
  "mcpServers": {
    "kosmokrator-clicksend": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=clicksend",
        "--write=deny"
      ]
    }
  }
}

Serve Manually

kosmokrator mcp:serve --integration=clicksend --write=deny

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP toolSource functionType
integration__clicksend__clicksend_get_account_balance clicksend.clicksend_get_account_balance Read read
integration__clicksend__clicksend_get_email_history clicksend.clicksend_get_email_history Read read
integration__clicksend__clicksend_get_sms_history clicksend.clicksend_get_sms_history Read read
integration__clicksend__clicksend_get_sms_price clicksend.clicksend_get_sms_price Read read
integration__clicksend__clicksend_get_voice_history clicksend.clicksend_get_voice_history Read read
integration__clicksend__clicksend_list_contact_lists clicksend.clicksend_list_contact_lists Read read
integration__clicksend__clicksend_send_email clicksend.clicksend_send_email Write write
integration__clicksend__clicksend_send_post_letter clicksend.clicksend_send_post_letter Write write
integration__clicksend__clicksend_send_sms clicksend.clicksend_send_sms Write write
integration__clicksend__clicksend_send_voice clicksend.clicksend_send_voice Write write

Write Access

Start with --write=deny for read-only MCP clients. Use --write=ask or --write=allow only when the client and workspace are trusted.