Monorepo for Aesthetic.Computer
aesthetic.computer
1#!/usr/bin/env node
2// Entry point for aesthetic.computer MCP server
3
4import { AestheticComputerServer } from "./server.js";
5
6// Get token from environment variable or command line arg
7const token = process.env.AC_TOKEN || process.argv.find(arg => arg.startsWith('--token='))?.split('=')[1];
8
9const server = new AestheticComputerServer(token);
10server.run().catch((error) => {
11 console.error("Server error:", error);
12 process.exit(1);
13});