B
BigQuery
Run BigQuery SQL and inspect datasets and jobs.
·No reviews yet
Share:
About
Auto-generated
BigQuery is a Model Context Protocol server in the Data & Databases category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about BigQuery.
- What does the BigQuery MCP do?
- This MCP allows users to execute BigQuery SQL queries and inspect datasets and jobs directly. It acts as an interface to Google Cloud's BigQuery service.
- How do I authenticate with the BigQuery MCP?
- Authentication for the BigQuery MCP uses an API key. You will need to provide a valid API key to connect and utilize its features.
- What are typical use cases for the BigQuery MCP?
- Typical use cases include querying large datasets, analyzing data stored in BigQuery, and managing BigQuery jobs and resources directly through the MCP.
- Can I use the BigQuery MCP with Cline?
- The BigQuery MCP uses the stdio transport, which is compatible with Cline. Configuration details for connecting via stdio can be found in the Cline documentation.
- Are there any costs associated with using the BigQuery MCP?
- The BigQuery MCP itself is community-provided, but the underlying BigQuery service from Google Cloud has usage-based costs. Consult Google Cloud pricing for details.
- What is a prerequisite for using the BigQuery MCP?
- A key prerequisite for using this MCP is an active Google Cloud project with the BigQuery API enabled and an API key with appropriate permissions.
Install BigQuery
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"bigquery": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bigquery"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"bigquery": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bigquery"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"bigquery": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-bigquery"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.