KosmoKrator

support

Freshchat MCP Gateway for AI Agents

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

7 functions 6 read 1 write Bearer token auth

Freshchat MCP Gateway

Expose Freshchat to MCP clients with `kosmokrator mcp:serve --integration=freshchat`.

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=freshchat --write=deny --json
{
  "mcpServers": {
    "kosmokrator-freshchat": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=freshchat",
        "--write=deny"
      ]
    }
  }
}

Serve Manually

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

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP toolSource functionType
integration__freshchat__freshchat_list_conversations freshchat.freshchat_list_conversations Read read
integration__freshchat__freshchat_get_conversation freshchat.freshchat_get_conversation Read read
integration__freshchat__freshchat_create_conversation freshchat.freshchat_create_conversation Write write
integration__freshchat__freshchat_list_agents freshchat.freshchat_list_agents Read read
integration__freshchat__freshchat_get_agent freshchat.freshchat_get_agent Read read
integration__freshchat__freshchat_list_groups freshchat.freshchat_list_groups Read read
integration__freshchat__freshchat_get_current_user freshchat.freshchat_get_current_user Read read

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.