npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@wcg-hieule/bigquery-mcp

v1.0.2

Published

Wecare BigQuery MCP Server — Query và phân tích dữ liệu BigQuery trực tiếp từ AI agent

Downloads

322

Readme

@wcg-hieule/bigquery-mcp

MCP Server for Google BigQuery — Query, analyze, and forecast data in BigQuery directly from your AI agent.

npm version npm downloads License: MIT Node.js


Quick Start

# 1. Authenticate with GCP
gcloud auth application-default login

# 2. Add to mcp_config.json and run via npx

Add to your mcp_config.json:

{
  "mcpServers": {
    "bigquery": {
      "command": "npx",
      "args": ["-y", "@wcg-hieule/bigquery-mcp"],
      "env": {
        "BIGQUERY_PROJECT": "your-gcp-project-id",
        "BIGQUERY_LOCATION": "asia-southeast1"
      }
    }
  }
}

Authentication

Supports two methods:

Option A — Application Default Credentials (recommended)

gcloud auth application-default login

Option B — Service Account Key

{
  "env": {
    "GOOGLE_APPLICATION_CREDENTIALS": "C:/path/to/service-account-key.json"
  }
}

Environment Variables

| Variable | Required | Default | Description | |----------|:--------:|---------|-------------| | BIGQUERY_PROJECT | ✅ | — | GCP Project ID | | BIGQUERY_LOCATION | ❌ | US | BigQuery dataset location | | GOOGLE_APPLICATION_CREDENTIALS | ❌ | ADC | Path to service account key file |


Tools (9)

🔍 Exploration

| Tool | Description | |------|-------------| | list_dataset_ids | List all datasets in the project | | list_table_ids | List tables in a specific dataset | | get_dataset_info | Get metadata of a dataset | | get_table_info | Get schema + metadata of a table | | search_catalog | Search tables/datasets/views by keyword |

⚡ Query & Analysis

| Tool | Description | |------|-------------| | execute_sql | Run a SQL query and return results | | ask_data_insights | Ask a natural language question → get SQL + insights | | forecast | Time series forecasting using BigQuery ML ARIMA_PLUS | | analyze_contribution | Key driver / contribution analysis across dimensions |


Compatibility

Works with any MCP-compatible AI client:

  • ✅ Gemini CLI / Antigravity IDE
  • ✅ Claude Desktop
  • ✅ VS Code Copilot
  • ✅ Cursor

License

MIT © wcg-hieule