bigquery-mcp
@PaddyAlton
bigquery-mcp について
An MCP server to help AI Agents inspect the contents of a BigQuery warehouse
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"bigquery-mcp": {
"command": "uv",
"args": [
"run",
"--with",
"mcp",
"--directory",
"/path/to/bigquery-mcp",
"mcp",
"run",
"/path/to/bigquery-mcp/src/server.py"
],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": ""
}
}
}
}ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
What is bigquery-mcp?
bigquery-mcp is a Model Context Protocol (MCP) server that provides AI agents with tools to examine the contents of a BigQuery data warehouse—including datasets, tables, columns, and query history. It is designed for developers using AI-powered coding tools (e.g., Cursor) to improve the quality of SQL queries by giving the agent context about the database schema and data.
How to use bigquery-mcp?
After ensuring uv is installed and a BigQuery client is available (via gcloud or a service account key set in GOOGLE_APPLICATION_CREDENTIALS), clone the repository and run uv sync. Then, in Cursor settings under MCP Servers, start a server with the command: uv run --with mcp --directory /path/to/bigquery-mcp mcp run /path/to/bigquery-mcp/src/server.py. A contextual rule file (.cursor/rules/tool-use-rule.mdc) is recommended to give the Cursor Agent proper instructions for using the tools.
Key features of bigquery-mcp
- Provides AI agents with tools to list BigQuery datasets, tables, and columns.
- Lets agents inspect query history for context.
- Helps agents write better SQL by exposing database contents.
- Easy integration with Cursor IDE via a single command.
- Relies on
uvfor dependency management and BigQuery client library for authentication.
Use cases of bigquery-mcp
- An AI coding agent needs to write a query but lacks schema awareness; it uses bigquery-mcp to list all tables and their columns first.
- Exploring a new BigQuery project: an agent can fetch dataset and table names before generating analysis queries.
- Reviewing past query patterns by inspecting BigQuery’s query history through the MCP tools.
FAQ from bigquery-mcp
What prerequisites are required to run bigquery-mcp?
You need uv installed (e.g., via brew install uv) and a BigQuery client that can transparently create a client—usually from having gcloud installed locally. Alternatively, set the GOOGLE_APPLICATION_CREDENTIALS environment variable to point to a service account key.
How do I start bigquery-mcp in Cursor?
In Cursor settings, go to MCP Servers and add a new server with the command: uv run --with mcp --directory /path/to/bigquery-mcp mcp run /path/to/bigquery-mcp/src/server.py.
What tools does bigquery-mcp give to an AI agent?
The server provides tools to examine BigQuery datasets, tables, columns, and query history, giving the agent the context it needs to write better SQL queries.
What are the development dependencies?
For development you also need Taskfile installed (e.g., brew install go-task). The project uses a Taskfile for task automation.
Does bigquery-mcp assume any particular authentication method?
It currently assumes you can transparently create a BigQuery Client. This works when gcloud is installed locally—in other environments you can provide a service account key via the GOOGLE_APPLICATION_CREDENTIALS environment variable.
「データベース」の他のコンテンツ
MCP Alchemy
runekaagaardA MCP (model context protocol) server that gives the LLM access to and knowledge about relational databases like SQLite, Postgresql, MySQL & MariaDB, Oracle, and MS-SQL.
MCP Server for MySQL based on NodeJS
benborlaA Model Context Protocol server that provides read-only access to MySQL databases. This server enables LLMs to inspect database schemas and execute read-only queries.
Neon MCP Server
neondatabaseMCP server for interacting with Neon Management API and databases
Multi Database MCP Server
FreePeakA powerful multi-database server implementing the Model Context Protocol (MCP) to provide AI assistants with structured access to databases.
MongoDB MCP Server
mongodb-jsA Model Context Protocol server to connect to MongoDB databases and MongoDB Atlas Clusters.
コメント