UNPKG
koreandict-mcp-server
Version:
latest (1.0.0)
1.0.0
국립국어원 표준국어대사전 MCP 서버
github.com/tenacl/koreandict-mcp-server
tenacl/koreandict-mcp-server
koreandict-mcp-server
/
bin
/
cli.js
13 lines
(11 loc)
•
357 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env node
/** * 국립국어원 표준국어대사전 MCP 서버 CLI * * 이 파일은 명령줄에서 서버를 직접 실행할 수 있게 해줍니다. */
// ES 모듈로 dist/index.js 파일 임포트
import
(
'../dist/index.js'
).
catch
(
err
=>
{
console
.
error
(
'서버 시작 중 오류 발생:'
, err); process.
exit
(
1
); });