local-only server
The server can only run on the client’s local machine because it depends on local resources.
Integrations
Integrates with a FastAPI hosted ML server to serve a trained Random Forest model for predictions and data processing.
Provides integration with GitHub repositories for cloning and accessing code resources needed for the MCP server setup.
Integrates with Imgur for image hosting used in the demonstration of the MCP server capabilities.
MCP 서버 구축
훈련된 랜덤 포레스트 모델을 제공하고 ReAct 상호 작용을 위해 Bee 프레임워크와 통합하는 MCP 서버를 구축하는 방법에 대한 전체적인 연습입니다.
라이브로 직접 확인해보세요 📺
MCP 서버 시작 🚀
- 이 저장소를 복제하세요
git clone https://github.com/nicknochnack/BuildMCPServer
- MCP 서버를 실행하려면
cd BuildMCPServer
uv venv
source .venv/bin/activate
uv add .
uv add ".[dev]"
uv run mcp dev server.py
- 에이전트를 실행하려면 별도의 터미널에서 다음을 실행하세요.
source .venv/bin/activate
uv run singleflowagent.py
FastAPI 호스팅 ML 서버 시작
git clone https://github.com/nicknochnack/CodeThat-FastML
cd CodeThat-FastML
pip install -r requirements.txt
uvicorn mlapi:app --reload
자세한 제작 방법은 여기에서도 확인할 수 있습니다.
기타 참고 자료 🔗
- MCP 클라이언트 구축(SingleFlow 에이전트에서 사용)
- ML 서버를 구축하는 원본 비디오
누가, 언제, 왜?
👨🏾💻 저자: Nick Renotte 📅 버전: 1.x 📜 라이선스: 이 프로젝트는 MIT 라이선스에 따라 라이선스가 부여되었습니다.
This server cannot be installed
훈련된 랜덤 포레스트 모델을 Bee Framework와 통합하여 AI 도구와 에이전트에 대한 ReAct 상호 작용을 지원하는 서버입니다.
- See it live and in action 📺
- Startup MCP Server 🚀
- Startup FastAPI Hosted ML Server
- Other References 🔗 </br>
- Who, When, Why?