Skip to main content
Glama
by ethancod1ng
index.ts542 B
#!/usr/bin/env node import { BinanceMCPServer } from './server.js'; import { logError } from './utils/error-handling.js'; process.env.TZ = process.env.TZ || Intl.DateTimeFormat().resolvedOptions().timeZone; async function main(): Promise<void> { try { const server = new BinanceMCPServer(); await server.start(); } catch (error) { logError(error as Error); process.exit(1); } } if (require.main === module) { main().catch((error) => { logError(error); process.exit(1); }); } export { BinanceMCPServer };

Latest Blog Posts

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/ethancod1ng/binance-mcp-server'

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