KosmoKrator

data

Typesense MCP Gateway for AI Agents

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

7 functions 5 read 2 write API key auth

Typesense MCP Gateway

Expose Typesense to MCP clients with `kosmokrator mcp:serve --integration=typesense`.

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

Serve Manually

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

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP toolSource functionType
integration__typesense__typesense_list_collections typesense.typesense_list_collections Read read
integration__typesense__typesense_get_collection typesense.typesense_get_collection Read read
integration__typesense__typesense_create_collection typesense.typesense_create_collection Write write
integration__typesense__typesense_search_documents typesense.typesense_search_documents Read read
integration__typesense__typesense_index_document typesense.typesense_index_document Write write
integration__typesense__typesense_get_document typesense.typesense_get_document Read read
integration__typesense__typesense_get_health typesense.typesense_get_health 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.