UNPKG
optimus-mcp-client
Version:
latest (1.0.7)
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Optimus Security MCP Client - TypeScript implementation
optimus-mcp-client
/
dist
/
index.js
14 lines
•
316 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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