KosmoKrator

productivity

NocoDB MCP Gateway for AI Agents

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

15 functions 8 read 7 write API token auth

NocoDB MCP Gateway

Expose NocoDB to MCP clients with `kosmokrator mcp:serve --integration=nocodb`.

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

Serve Manually

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

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names:

MCP Tool Names (15 tools)
MCP toolSource functionType
integration__nocodb__nocodb_list_records nocodb.nocodb_list_records Read read
integration__nocodb__nocodb_get_record nocodb.nocodb_get_record Read read
integration__nocodb__nocodb_create_record nocodb.nocodb_create_record Write write
integration__nocodb__nocodb_update_record nocodb.nocodb_update_record Write write
integration__nocodb__nocodb_delete_record nocodb.nocodb_delete_record Write write
integration__nocodb__nocodb_batch_create nocodb.nocodb_batch_create Write write
integration__nocodb__nocodb_batch_update nocodb.nocodb_batch_update Write write
integration__nocodb__nocodb_batch_delete nocodb.nocodb_batch_delete Write write
integration__nocodb__nocodb_list_bases nocodb.nocodb_list_bases Read read
integration__nocodb__nocodb_get_base nocodb.nocodb_get_base Read read
integration__nocodb__nocodb_list_tables nocodb.nocodb_list_tables Read read
integration__nocodb__nocodb_get_table nocodb.nocodb_get_table Read read
integration__nocodb__nocodb_create_table nocodb.nocodb_create_table Write write
integration__nocodb__nocodb_list_views nocodb.nocodb_list_views Read read
integration__nocodb__nocodb_count_records nocodb.nocodb_count_records 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.