Skip to main content
Glama

BigQuery Validator

by caron14
__main__.pyβ€’835 B
"""Main entry point for the MCP BigQuery server.""" import argparse import asyncio import sys from . import __version__ from .server import main as server_main def main(): """Console script entry point.""" parser = argparse.ArgumentParser( description="MCP BigQuery Server - Validate and analyze BigQuery SQL" ) parser.add_argument("--version", action="version", version=f"mcp-bigquery {__version__}") # Parse arguments (unused but kept for future extensibility) parser.parse_args() # Run the server try: asyncio.run(server_main()) except KeyboardInterrupt: print("\nServer stopped by user", file=sys.stderr) sys.exit(0) except Exception as e: print(f"Server error: {e}", file=sys.stderr) sys.exit(1) if __name__ == "__main__": main()

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/caron14/mcp-bigquery'

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