KosmoKrator

database

QuickBase MCP, CLI, and Lua Integration for AI Agents

QuickBase integration docs for AI agents: MCP gateway setup, QuickBase CLI commands, Lua API reference, credentials, and function schemas.

6 functions 5 read 1 write Bearer token auth

QuickBase for agents

Credentials can be configured manually in web or CLI hosts.

Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.

Machine-Readable Metadata
integration_slug
quickbase
route_slug
quickbase
package
quickbase
auth_strategy
bearer_token Bearer token
cli_setup_supported
true
cli_runtime_supported
true
mcp_gateway_supported
true
lua_supported
true
supports_multi_account
true

Quick Links

QuickBase MCP Client Matrix

Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for QuickBase.

QuickBase CLI Matrix

Use these pages for direct QuickBase CLI workflows in scripts, CI, cron, and agent wrappers.

Function Catalog

FunctionTypeParametersDescription
quickbase.quickbase_list_tables Read read 1 List all tables in a QuickBase application. Returns table IDs, names, and metadata for each table in the specified app.
quickbase.quickbase_get_table Read read 1 Get details for a specific QuickBase table, including its name, ID, and field definitions.
quickbase.quickbase_list_records Read read 6 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).
quickbase.quickbase_get_record Read read 2 Get a single QuickBase record by its record ID. Returns all field values for the specified record.
quickbase.quickbase_create_record Write write 2 Create a new record in a QuickBase table. Provide field data as an array of {fieldId, value} pairs.
quickbase.quickbase_get_current_user Read read 0 Get the currently authenticated QuickBase user. Returns user profile information including name, email, and user ID.