Skip to main content
Glama
charlielockyer-rice

tscircuit MCP Server

index.ts702 B
#!/usr/bin/env node import { TscircuitMCPServer } from './server.js'; async function main() { const server = new TscircuitMCPServer(); // Handle graceful shutdown process.on('SIGINT', () => { console.error('Received SIGINT, shutting down gracefully...'); process.exit(0); }); process.on('SIGTERM', () => { console.error('Received SIGTERM, shutting down gracefully...'); process.exit(0); }); try { await server.run(); } catch (error) { console.error('Server error:', error); process.exit(1); } } if (import.meta.url === `file://${process.argv[1]}`) { main().catch((error) => { console.error('Fatal error:', error); process.exit(1); }); }

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/charlielockyer-rice/tscircuit-mcp'

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