What problem does it solve?
Investigating data in Google BigQuery requires knowing which datasets and tables exist before writing queries, and manually exploring schemas through the console slows down incident analysis and data exploration.
Core Features & Use Cases
- Schema-First Discovery: List datasets, list tables within a dataset, and inspect table schemas including row counts, sizes, and column types before writing any SQL.
- SQL Query Execution: Run arbitrary BigQuery Standard SQL queries with configurable default datasets and row limits, returning structured JSON results.
- Transparent Authentication: Credentials are injected by a proxy layer, so scripts run directly without manual service account setup.
- Use Case: During an incident investigation, list available datasets, find the events table, inspect its schema, then query the last 24 hours of error logs to identify the root cause.
Quick Start
Ask the agent to list all BigQuery datasets and then run a SQL query against a specific table to inspect recent rows.