Firebolt
Connect your LLM to the Firebolt Data Warehouse for data querying and analysis.
Key Features
LLM Integration with Firebolt
- Connect your AI assistants directly to your data warehouse
- Enable AI agents to autonomously query data and generate insights
- Provide LLMs with deep knowledge of Firebolt SQL, features, and documentation
SQL Query Execution
- Support for multiple query types and execution modes
- Direct access to Firebolt databases
Documentation Access
- Grant LLMs access to comprehensive Firebolt docs, SQL reference, function lists, and more
Account Management
- Seamless authentication with Firebolt service accounts
- Connect to different engines and workspaces
Multi-platform Support
- Runs anywhere Go binaries are supported
- Official Docker image available for easy deployment
How To Use
Before you start, ensure you have a Firebolt service account with a client ID and client secret.
Installing the MCP Server
You can run the Firebolt MCP Server either via Docker or by downloading the binary.
Option 1: Run with Docker
docker run \
--rm \
-e FIREBOLT_MCP_CLIENT_ID=your-client-id \
-e FIREBOLT_MCP_CLIENT_SECRET=your-client-secret \
ghcr.io/firebolt-db/mcp-server:0.4.0
Option 2: Run the Binary
# Download the binary for your OS from:
# https://github.com/firebolt-db/mcp-server/releases/tag/v0.4.0
./firebolt-mcp-server \
--client-id your-client-id \
--client-secret your-client-secret
Connecting Your LLM
Once the MCP Server is installed, you can connect various LLM clients.
Below are integration examples for Claude Desktop. For other clients like VSCode Copilot Chat and Cursor, please refer to their official documentation.
Claude Desktop
To integrate with Claude Desktop using Docker:
-
Open the Claude menu and select Settings….
-
Navigate to Developer > Edit Config.
-
Update the configuration file (
claude_desktop_config.json) to include:{ "mcpServers": { "firebolt": { "command": "docker", "args": [ "run", "-i", "--rm", "-e", "FIREBOLT_MCP_CLIENT_ID", "-e", "FIREBOLT_MCP_CLIENT_SECRET", "ghcr.io/firebolt-db/mcp-server:0.4.0" ], "env": { "FIREBOLT_MCP_CLIENT_ID": "your-client-id", "FIREBOLT_MCP_CLIENT_SECRET": "your-client-secret" } } } }To use the binary instead of Docker:
{ "mcpServers": { "firebolt": { "command": "/path/to/firebolt-mcp-server", "env": { "FIREBOLT_MCP_CLIENT_ID": "your-client-id", "FIREBOLT_MCP_CLIENT_SECRET": "your-client-secret" } } } } -
Save the config and restart Claude Desktop.
More details: Claude MCP Quickstart Guide
GitHub Copilot Chat (VSCode)
To integrate MCP with Copilot Chat in VSCode, refer to the official documentation:
👉 Extending Copilot Chat with the Model Context Protocol
Cursor Editor
To set up MCP in Cursor, follow their guide:
👉 Cursor Documentation on Model Context Protocol
[!IMPORTANT]
Cursor does not support MCP resources yet. This MCP server uses resources heavily, so it will not work in Cursor unless you explicitly disable resource usage.
To make it work, you must set the following environment variable:
FIREBOLT_MCP_DISABLE_RESOURCES=true
Using SSE Transport
By default, the MCP Server uses STDIO as the transport mechanism.
However, Server-Sent Events (SSE) are also supported and require additional configuration.
To enable SSE, set the --transport CLI flag (or the FIREBOLT_MCP_TRANSPORT environment variable) to sse.
Optionally, you can specify the address the server should listen on by setting the --transport-sse-listen-address CLI flag (or the FIREBOLT_MCP_TRANSPORT_SSE_LISTEN_ADDRESS environment variable).
Architecture
Firebolt MCP Server implements the Model Context Protocol, providing:
-
Tools - Task-specific capabilities provided to the LLM:
firebolt_docs: Access Firebolt documentationfirebolt_connect: Establish connections to Firebolt engines and databasesfirebolt_query: Execute SQL queries against Firebolt
-
Resources - Data that can be referenced by the LLM:
- Documentation articles
- Lists of Accounts, Databases, Engines
-
Prompts - Predefined instructions for the LLM:
- Firebolt Expert: Prompts the model to act as a Firebolt specialist
Development
To set up the development environment:
# Clone this repository
git clone https://github.com/firebolt-db/mcp-server.git
# Go into the repository
cd mcp-server
# Install Task (if you don't have it already)
go install github.com/go-task/task/v3/cmd/task@latest
# Update Go dependencies
task mod
# Build the application
task build
# Run the tests
task test
Related Servers
Veri5ight
An MCP server that enables chat-based interaction with Ethereum nodes.
MCP Memory Dashboard
A desktop application for managing and interacting with the MCP Memory Service, a semantic memory system built on the Model Context Protocol.
Data Exploration
MCP server for autonomous data exploration on .csv-based datasets, providing intelligent insights with minimal effort.
YugabyteDB MCP Server
Allows LLMs to directly interact with a YugabyteDB database.
Airtable
Read and write access to Airtable databases.
MSSQL
Interact with Microsoft SQL Server databases to run queries and analyze business data.
Baserow
Read and write access to your Baserow tables.
PocketBase MCP Server
Interact with a PocketBase instance to manage records and files in collections.
Postgres MCP Pro
An MCP server for PostgreSQL providing index tuning, explain plans, health checks, and safe SQL execution.
Supabase
Connects to Supabase platform for database, auth, edge functions and more.