Quickbase MCP Server
remote-capable server
The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.
Integrations
Requires Node.js 14 or higher as a prerequisite for running the MCP server that connects to the Quickbase API.
Quickbase MCP Connector
A Model Context Protocol (MCP) connector for integrating with the Quickbase JSON RESTful API.
DISCLAIMER: This is an unofficial, independent project not affiliated with, sponsored, or endorsed by Quickbase, Inc. This connector is provided "as-is" without warranty of any kind and is not supported by Quickbase. Users are responsible for their own compliance with all applicable laws, regulations, and security requirements when using this connector.
Overview
This connector uses the Model Context Protocol (MCP) to enable AI assistants like Claude to interact with Quickbase's API. It supports a wide range of operations for managing apps, tables, fields, records, files, and reports with Quickbase.
Features
For Users
- AI-Powered Quickbase Access: Talk to your Quickbase data directly through Claude
- Data Management: Create, view, and update your apps, tables, and records through natural language
- File Handling: Upload and download file attachments to your records
- Report Access: Run your Quickbase reports and get the results directly in chat
- Large Dataset Support: Handles pagination automatically when querying large numbers of records
For Developers
- Comprehensive API Coverage: Access to core Quickbase API functionality
- Structured Responses: Consistent response formatting for reliable parsing
- Batch Operations: Efficient handling of bulk record operations
- Error Diagnostics: Detailed error messages with status codes and troubleshooting information
Prerequisites
- Python 3.8 or higher
- Node.js 14 or higher
- Quickbase API credentials (realm hostname, user token, and app ID)
Installation
- Clone the repository:
- Set up the environment:
- Configure your Quickbase credentials:
Quick Start
For those who just want to try this connector with Claude or Claude Code:
- Install dependencies and set up the server:
- Using with Claude Desktop (recommended):
Create a config file for Claude Desktop that automatically starts the server. The configuration file location depends on your operating system:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- Windows:
%APPDATA%\Claude\claude_desktop_config.json
- Linux:
~/.config/Claude/claude_desktop_config.json
Add the following configuration:
- Using with Claude Code:
Now you can use Quickbase tools in your Claude session! Example prompt: "List all tables in my Quickbase app using the quickbase connector."
Available Tool Categories
Connection Tools
test_connection
: Verify your Quickbase API connectioncheck_auth
: Check authentication status and permissions
App Tools
get_app
: Get details about a specific appget_apps
: List all available appscreate_app
,update_app
: Create and update applications
Table Tools
get_table
,get_tables
: Retrieve table informationcreate_table
,update_table
: Create and update tables
Field Tools
get_field
,get_fields
: Retrieve field informationcreate_field
,update_field
: Create and update fields
Record Tools
get_record
,query_records
: Retrieve record datacreate_record
,update_record
: Individual record operationsbulk_create_records
,bulk_update_records
: Efficient batch operations
File Tools
upload_file
: Upload a file to a record fielddownload_file
: Download a file from a record fieldmanage_attachments
: High-level attachment management
Report Tools
run_report
: Execute Quickbase reports
Not implemented
The following operations are not implemented:
- Delete operations (delete_app, delete_table, delete_field, delete_record, bulk_delete_records, delete_file)
- User operations (get_user, get_current_user, get_user_roles, manage_users)
- Form operations (manage_forms)
- Dashboard operations (manage_dashboards)
- Pipelines operations (manage_pipelines)
- FastField Form operations (manage_fast_field_form)
For Developers & Contributors
Starting the MCP Server Manually
If you need to manually start the server (for development or debugging):
Running Tests
This section is primarily for contributors who want to verify their changes or run the test suite.
All tests are located in the tests/
directory. You can use the test runner to run specific tests or all tests:
Individual test scripts can also be run directly:
For more information about tests, see tests/README.md.
Environment Variables
The following environment variables may need to be configured:
Error Handling
The connector provides comprehensive error handling with:
- Error type classification
- HTTP status codes
- Detailed error messages from Quickbase API
- Suggested solutions
- Parameter validation
- JSON data validation
- Proper handling of API request errors
Common Error Scenarios
- Missing required parameters
- Invalid JSON data format
- Non-existent table or field IDs
- Invalid WHERE clause syntax
- Authentication failures
- Permission issues
- Network connectivity problems
All error responses include helpful diagnostic information to assist with troubleshooting.
Contributing
- Fork the repository
- Create a feature branch
- Commit your changes
- Push to the branch
- Create a Pull Request
License
MIT License - see LICENSE file for details
This server cannot be installed
Provides a standardized interface for interacting with Quickbase's JSON RESTful API through Claude and other MCP clients, supporting operations like querying records, managing table relationships, and handling file attachments.