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_tokenBearer token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. QuickBase CLIHeadless setup and direct function calls. QuickBase MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
QuickBase MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for QuickBase.
Claude Code QuickBase MCP setup for Claude Code. Cursor QuickBase MCP setup for Cursor. Codex QuickBase MCP setup for Codex. OpenAI Agents QuickBase MCP setup for OpenAI Agents SDK. Claude Agent SDK QuickBase MCP setup for Claude Agent SDK. Vercel AI SDK QuickBase MCP setup for Vercel AI SDK. LangChain QuickBase MCP setup for LangChain. LangGraph QuickBase MCP setup for LangGraph. CrewAI QuickBase MCP setup for CrewAI. MCP clients QuickBase MCP setup for Generic MCP Clients.
QuickBase CLI Matrix
Use these pages for direct QuickBase CLI workflows in scripts, CI, cron, and agent wrappers.
CI QuickBase CLI for CI. Cron Jobs QuickBase CLI for cron jobs. Shell Scripts QuickBase CLI for shell scripts. Headless Automation QuickBase CLI for headless automation. Coding Agents QuickBase CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
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. |