POcodingWER/mcp_server-algorithm
3.1
If you are the rightful owner of mcp_server-algorithm and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
MCP_sertver-algorithm is a model context protocol server designed to implement algorithm MCP.
MCP_sertver-algorithm
알고리즘 MCP를 구현해보자
stdio 테스트 서버 구현
npm i
#도커로 이미지생성
docker build -t mcp-algorithm .
#mcp 추가
"mcpServers": {
"algorithm-stdio": {
"command": "docker",
"args": [
"run",
"-i",
"-v",
"--rm",
"mcp-algorithm"
]
}
}
sse 테스트 서버 구현
npm i
#server 실행
npm run sse
#mcp 추가
"mcpServers": {
"algorithm-local": {
"url": "http://localhost:3333/sse"
}
}