UNPKG

optimus-mcp-client

Version:

Optimus Security MCP Client - TypeScript implementation

14 lines 316 B
#!/usr/bin/env node import server from './tools/optimus_security.js'; // Start the FastMCP server try { server.start({ transportType: 'stdio' }); } catch (error) { console.error('Failed to start MCP server:', error); process.exit(1); } export default server; //# sourceMappingURL=index.js.map