
BlazeSQL MCP Server
A Model Context Protocol server that enables AI clients to interact with BlazeSQL's Natural Language Query API, allowing natural language queries against SQL databases.
Tools
blazesql_query
Executes a natural language query against a specified BlazeSQL database.
README
BlazeSQL MCP Server
This project implements a Model Context Protocol (MCP) server that acts as a proxy to the BlazeSQL Natural Language Query API. It allows MCP-compatible clients (like Cursor, Claude 3 with tool use, the MCP Inspector, etc.) to interact with BlazeSQL using natural language.
Features
- Exposes the BlazeSQL Natural Language Query API as an MCP tool named
blazesql_query
. - Handles API key authentication securely via environment variables.
- Communicates with clients using the standard MCP stdio transport.
Workflow Diagram
This diagram shows the sequence of interactions when a client uses the blazesql_query
tool:
sequenceDiagram
participant Client as MCP Client (e.g., Cursor)
participant Server as BlazeSQL MCP Server (index.ts)
participant Env as Environment (.env)
participant BlazeAPI as BlazeSQL API
Client->>Server: ListTools Request (via stdio)
Server-->>Client: ListTools Response (tools: [blazesql_query]) (via stdio)
Client->>Server: CallTool Request (blazesql_query, db_id, nl_request) (via stdio)
Server->>Env: Read BLAZE_API_KEY
Env-->>Server: BLAZE_API_KEY
Server->>BlazeAPI: POST /natural_language_query_api (apiKey, db_id, nl_request)
BlazeAPI->>BlazeAPI: Process Query (NL->SQL, Execute)
BlazeAPI-->>Server: HTTPS Response (JSON: agent_response, query, data_result OR error)
Server->>Server: Format Response (Stringify structuredResult into text block)
Server-->>Client: CallTool Response (content: [{type: text, text: stringifiedJSON}]) (via stdio)
Prerequisites
- Node.js (LTS version recommended)
- Yarn (Classic or Berry)
- A BlazeSQL account with an API Key (Team Advanced subscription required for the API).
- At least one database connection configured in your BlazeSQL account.
- BlazeSQL Natural Language Query API Documentation: https://help.blazesql.com/en/article/natural-language-query-api-1fgx4au/
Setup
-
Clone the Repository:
git clone <repository-url> cd blaze-sql-mcp-server
-
Install Dependencies:
yarn install
-
Configure Environment Variables:
- Copy the example environment file:
cp .env.sample .env
- Edit the
.env
file:
Replace# .env BLAZE_API_KEY=YOUR_BLAZESQL_API_KEY_HERE
YOUR_BLAZESQL_API_KEY_HERE
with your actual API key obtained from your BlazeSQL account settings.
- Copy the example environment file:
Running the Server
-
Build the Server: Compile the TypeScript code to JavaScript:
yarn build
-
Run the Server: Execute the compiled code:
node build/index.js
The server will start and log messages to
stderr
(you might see "API Key loaded successfully..." etc.). It is now listening for an MCP client connection via standard input/output (stdio).
Connecting an MCP Client
This server uses the stdio transport mechanism.
Using the MCP Inspector (Recommended for Testing)
- Make sure the server is not already running separately.
- Run the Inspector, telling it to launch your server:
npx @modelcontextprotocol/inspector node build/index.js
- The Inspector UI will launch, automatically connecting to your server.
- Navigate to the "Tools" tab to interact with the
blazesql_query
tool.
Using Integrated Clients (Cursor, Claude 3, etc.)
- Start the server in a terminal:
node build/index.js
- Configure the client: In your MCP client's settings, you need to add a custom server configuration.
- Transport: Select
stdio
. - Command: Specify the exact command used to run the server. You need to provide the absolute path to node and the absolute path to the
build/index.js
file.- Example (macOS/Linux - adjust paths as needed):
/usr/local/bin/node /Users/your_username/path/to/blaze-sql-mcp-server/build/index.js
- You can find the path to node using
which node
in your terminal. - You can find the path to the project using
pwd
inside the project directory.
- Example (macOS/Linux - adjust paths as needed):
- Save the configuration.
- Transport: Select
- The client should now be able to connect to your locally running server and list/use its tools.
Using the blazesql_query
Tool
Once connected, the client can call the blazesql_query
tool.
-
Tool Name:
blazesql_query
-
Arguments:
db_id
(string, required): The ID of the target database connection in your BlazeSQL account. You can find this ID in the BlazeSQL web application when managing your database connections.natural_language_request
(string, required): The query you want to execute, written in plain English (e.g., "show me the total number of users").
-
Example Call (using
mcp test
syntax for illustration):call-tool blazesql_query --db_id "db_your_actual_db_id" --natural_language_request "What were the total sales last month?"
-
Output: If successful, the tool returns:
- A
text
block containing the natural language response from the BlazeSQL agent. - A
code
block (languagesql
) containing the SQL query generated and executed by BlazeSQL. - A
json
block containing the actual data results from the query. If unsuccessful, it returns an MCP error message.
- A
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.