KosmoKrator

data

Upstash Redis MCP Gateway for AI Agents

Expose Upstash Redis 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

Upstash Redis MCP Gateway

Expose Upstash Redis to MCP clients with `kosmokrator mcp:serve --integration=upstash`.

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

Serve Manually

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

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP toolSource functionType
integration__upstash__upstash_get_key upstash.upstash_get_key Read read
integration__upstash__upstash_set_key upstash.upstash_set_key Write write
integration__upstash__upstash_delete_key upstash.upstash_delete_key Write write
integration__upstash__upstash_list_keys upstash.upstash_list_keys Read read
integration__upstash__upstash_list_databases upstash.upstash_list_databases Read read
integration__upstash__upstash_get_database upstash.upstash_get_database Read read
integration__upstash__upstash_get_current_user upstash.upstash_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.