Sponsored by Deepsite.site

BigQuery & Tavily FastAPI MCP

Created By
osushinekotan8 months ago
bigquery & web search api + mcp server
Content

BigQuery & Tavily FastAPI MCP

A lightweight, secure API & MCP for accessing and querying Google BigQuery datasets and Tavily search

FastAPI

Features

  • Read-only access to BigQuery datasets and tables
  • Security features including query validation and dataset access control
  • Full support for standard BigQuery queries with cost control
  • Tavily search and web content extraction capabilities
  • RESTful API with comprehensive documentation

Setup

Prerequisites

  • Python 3.11 or higher
  • Google Cloud Project with BigQuery enabled
  • Service account with BigQuery access
  • Tavily API key for search functionality

Installation

  1. Clone the repository
git clone https://github.com/osushinekotan/bigquery-fastapi-mcp
cd bigquery-fastapi-mcp
  1. Install dependencies
uv sync
  1. Create a .env file with your configuration
BQ_PROJECT_ID=your-gcp-project-id
BQ_ALLOWED_DATASETS=dataset1,dataset2,dataset3
BQ_MAX_BYTES_BILLED=1073741824  # 1GB default
TAVILY_API_KEY=your-tavily-api-key
APP_HOST=127.0.0.1
APP_PORT=8000
  1. Set up GCP authentication
# Either set the environment variable
export GOOGLE_APPLICATION_CREDENTIALS=/path/to/your/service-account-key.json

# Or authenticate using gcloud
gcloud auth application-default login

Running the Application

uv run uvicorn app.main:app --reload

or

uv run python -m app.main

The API will be available at http://localhost:8000

API documentation will be available at http://localhost:8000/docs

API Endpoints

Health Check

  • GET /health/health - Verify the API is running

BigQuery Datasets

  • GET /bigquery/list_datasets - List all datasets in the project (filtered by allowed datasets)
  • GET /bigquery/allowed_datasets - Get configured allowed datasets

BigQuery Tables

  • GET /bigquery/tables - List all tables in allowed datasets
  • GET /bigquery/tables?dataset_id=your_dataset - List tables in a specific dataset
  • GET /bigquery/tables/{dataset_id}/{table_id} - Get detailed information about a specific table

BigQuery Query

  • POST /bigquery/query - Execute a BigQuery query

Example request body:

{
  "query": "SELECT * FROM `project.dataset.table` LIMIT 10",
  "dry_run": true
}
  • POST /search/search - Search the web using Tavily

Example request body:

{
  "query": "latest developments in AI",
  "max_results": 5
}

Tavily Extract

  • POST /search/extract - Extract content from web URLs

Example request body:

{
  "urls": ["https://example.com/article1", "https://example.com/article2"]
}

Security Features

  • Read-only query validation (only SELECT statements are allowed)
  • Dataset access control through environment configuration
  • Maximum billable bytes limit with configurable thresholds

MCP server

https://github.com/tadata-org/fastapi_mcp

Connecting to the MCP Server using SSE

Once your FastAPI app with MCP integration is running, you can connect to it with any MCP client supporting SSE, such as Cursor:

  1. Run your application.

  2. In Cursor -> Settings -> MCP, use the URL of your MCP server endpoint (e.g., http://localhost:8000/mcp) as sse.

  3. Cursor will discover all available tools and resources automatically.

Connecting to the MCP Server using mcp-proxy stdio

If your MCP client does not support SSE, for example Claude Desktop:

  1. Run your application.

  2. Install mcp-proxy, for example: uv tool install mcp-proxy.

  3. Add in Claude Desktop MCP config file (claude_desktop_config.json):

On Windows:

{
  "mcpServers": {
    "my-api-mcp-proxy": {
      "command": "mcp-proxy",
      "args": ["http://127.0.0.1:8000/mcp"]
    }
  }
}

On MacOS:

Find the path to mcp-proxy by running in Terminal: which mcp-proxy.

{
  "mcpServers": {
    "my-api-mcp-proxy": {
      "command": "/Full/Path/To/Your/Executable/mcp-proxy",
      "args": ["http://127.0.0.1:8000/mcp"]
    }
  }
}

Find the path to mcp-proxy by running in Terminal: which uvx.

{
  "mcpServers": {
    "my-api-mcp-proxy": {
      "command": "/Full/Path/To/Your/uvx",
      "args": ["mcp-proxy", "http://127.0.0.1:8000/mcp"]
    }
  }
}
  1. Claude Desktop will discover all available tools and resources automatically
Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
WindsurfThe new purpose-built IDE to harness magic
TimeA Model Context Protocol server that provides time and timezone conversion capabilities. This server enables LLMs to get current time information and perform timezone conversions using IANA timezone names, with automatic system timezone detection.
CursorThe AI Code Editor
Playwright McpPlaywright MCP server
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
Amap Maps高德地图官方 MCP Server
DeepChatYour AI Partner on Desktop
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs
Context7Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors
ChatWiseThe second fastest AI chatbot™
Serper MCP ServerA Serper MCP Server
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
Tavily Mcp