KosmoKrator

database

QuickBase MCP Integration for CrewAI

Connect QuickBase to CrewAI through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.

6 functions 5 read 1 write Bearer token auth

Connect QuickBase to CrewAI

Expose KosmoKrator integrations to CrewAI workers as scoped local tools.

Wrap kosmo integrations:call for specific tasks or connect workers to a local MCP gateway. The gateway is local, scoped to this integration, and starts with --write=deny so CrewAI can inspect read-capable tools without receiving write access by default.

QuickBase MCP Config for CrewAI

Use per-worker integration scopes to avoid giving every worker every tool.

{
  "mcpServers": {
    "kosmokrator-quickbase": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=quickbase",
        "--write=deny"
      ]
    }
  }
}

Run the Gateway Manually

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

Why Use KosmoKrator Here

Scoped tools

Expose only QuickBase instead of a broad multi-service tool list.

Local credentials

Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.

Write policy

Start read-only, then opt into ask or allow for trusted workspaces.

QuickBase Tools Visible to CrewAI

CrewAI sees stable MCP tool names generated from the QuickBase integration catalog.

MCP toolSource functionTypeDescription
integration__quickbase__quickbase_list_tables quickbase.quickbase_list_tables Read List all tables in a QuickBase application. Returns table IDs, names, and metadata for each table in the specified app.
integration__quickbase__quickbase_get_table quickbase.quickbase_get_table Read Get details for a specific QuickBase table, including its name, ID, and field definitions.
integration__quickbase__quickbase_list_records quickbase.quickbase_list_records Read Query records from a QuickBase table. Supports filtering by conditions, selecting specific fields, sorting, grouping, and pagination. Use the where clause to filter records (QuickBase query syntax).
integration__quickbase__quickbase_get_record quickbase.quickbase_get_record Read Get a single QuickBase record by its record ID. Returns all field values for the specified record.
integration__quickbase__quickbase_create_record quickbase.quickbase_create_record Write Create a new record in a QuickBase table. Provide field data as an array of {fieldId, value} pairs.
integration__quickbase__quickbase_get_current_user quickbase.quickbase_get_current_user Read Get the currently authenticated QuickBase user. Returns user profile information including name, email, and user ID.

Related QuickBase Pages