#!/usr/bin/env bun
import { BigQueryMcpServer } from "./server.js";
import { parseArgs } from "./utils/args-parser.js";
/**
* Main function
*/
async function main() {
const args = parseArgs();
const server = new BigQueryMcpServer(args);
await server.start();
}
// Run main function if this is the main module
if (import.meta.main) {
main().catch(error => {
console.error("Fatal error:", error);
process.exit(1);
});
}
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