Skip to main content
Glama

BigQuery MCP Server

by takuya0206
MIT License
24
3
  • Apple
  • Linux
types.ts638 B
import type { BigQueryOptions } from "@google-cloud/bigquery"; import { z } from "zod"; // Command line arguments schema export const ArgsSchema = z.object({ "project-id": z.string().min(1, "Project ID is required"), "location": z.string().default("asia-northeast1"), "key-file": z.string().optional(), "max-results": z.coerce.number().default(1000), "max-bytes-billed": z.coerce.number().default(500000000000), // 500GB }); export type Args = z.infer<typeof ArgsSchema>; // Common response type for tool handlers export type ToolResponse = { content: { type: "text"; text: string; }[]; isError?: boolean; };

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/takuya0206/bigquery-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server