UNPKG
@iflow-mcp/chess-mcp
Version:
latest (1.0.0)
1.0.0
0.0.9
0.0.8
0.0.7
Chess MCP server with position evaluation, move validation, and masters database
@iflow-mcp/chess-mcp
/
build
/
cli.js
8 lines
•
235 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
#!/usr/bin/env node
import
{
ChessServer
}
from
"./index.js"
;
const
server =
new
ChessServer
(); server.
run
().
catch
(
error
=>
{
console
.
error
(
'Failed to start server:'
, error); process.
exit
(
1
); });
//# sourceMappingURL=cli.js.map