KosmoKrator

other

Freshservice MCP Gateway for AI Agents

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

10 functions 7 read 3 write API key auth

Freshservice MCP Gateway

Expose Freshservice to MCP clients with `kosmokrator mcp:serve --integration=freshservice`.

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

Serve Manually

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

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP toolSource functionType
integration__freshservice__freshservice_list_tickets freshservice.freshservice_list_tickets Read read
integration__freshservice__freshservice_get_ticket freshservice.freshservice_get_ticket Read read
integration__freshservice__freshservice_create_ticket freshservice.freshservice_create_ticket Write write
integration__freshservice__freshservice_update_ticket freshservice.freshservice_update_ticket Write write
integration__freshservice__freshservice_delete_ticket freshservice.freshservice_delete_ticket Write write
integration__freshservice__freshservice_list_agents freshservice.freshservice_list_agents Read read
integration__freshservice__freshservice_get_agent freshservice.freshservice_get_agent Read read
integration__freshservice__freshservice_list_assets freshservice.freshservice_list_assets Read read
integration__freshservice__freshservice_get_asset freshservice.freshservice_get_asset Read read
integration__freshservice__freshservice_get_current_user freshservice.freshservice_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.