UNPKG

@access-mcp/system-status

Version:

MCP server for ACCESS-CI System Status and Outages API

12 lines (11 loc) 411 B
#!/usr/bin/env node import { SystemStatusServer } from "./server.js"; async function main() { const server = new SystemStatusServer(); const port = process.env.PORT ? parseInt(process.env.PORT, 10) : undefined; await server.start(port ? { httpPort: port } : undefined); } main().catch(() => { // Log errors to a file instead of stderr to avoid interfering with JSON-RPC process.exit(1); });