FastMCP_RecSys
This is a CLIP-Based Fashion Recommender with MCP.
Mockup
A user uploads a clothing image → YOLO detects clothing → CLIP encodes → Recommend similar
Folder Structure
/project-root
│
├── /backend
│ ├── Dockerfile
│ ├── /app
│ │ ├── server.py # FastAPI app code
│ │ ├── /routes
│ │ │ └── clothing_routes.py
│ │ ├── /controllers
│ │ │ └── clothing_controller.py
│ │ │ └──clothing_tagging.py
│ │ │ └── tag_extractor.py # Pending: define core CLIP functionality
│ │ ├── schemas/
│ │ │ └── clothing_schemas.py
│ │ ├── config/
│ │ │ └── tag_list_en.py $ Tool for mapping: https://jsoncrack.com/editor
│ │ │ └── database.py
│ │ │ └── settings.py
│ │ │ └── api_keys.py
│ │ └── requirements.txt
│ └── .env
│
├── /fastmcp
│ └── app
│ └── server.py
│
├── /frontend
│ ├── Dockerfile
│ ├── package.json
│ ├── package-lock.json
│ ├── /public
│ │ └── index.html
│ ├── /src
│ │ ├── /components
│ │ │ ├── ImageUpload.jsx
│ │ │ ├── DetectedTags.jsx
│ │ │ └── Recommendations.jsx
│ │ ├── /utils
│ │ │ └── api.js
│ │ ├── App.js # Main React component
│ │ ├── index.js
│ │ ├── index.css
│ │ ├── tailwind.config.js
│ │ ├── postcss.config.js
│ │ └── .env
│ ├── .gitignore
│ ├── docker-compose.yml
│ └── README.md
└────── requirements.txt
Quick Start Guide
Step 1: Clone the GitHub Project
Step 2: Set Up the Python Environment
python -m venv venv
source venv/bin/activate # On macOS or Linux
venvScriptsactivate # On Windows
Step 3: Install Dependencies
pip install -r requirements.txt
Step 4: Start the FastAPI Server (Backend)
uvicorn backend.app.server:app --reload
Once the server is running and the database is connected, you should see the following message in the console:
Database connected
INFO: Application startup complete.
Step 5: Install Dependencies
Database connected INFO: Application startup complete.
npm install
Step 6: Start the Development Server (Frontend)
npm start
Once running, the server logs a confirmation and opens the app in your browser: http://localhost:3000/
📌 Sample Components for UI
- Image upload
- Submit button
- Display clothing tags + recommendations
What’s completed so far:
- FastAPI server is up and running (24 Apr)
- Database connection is set up (24 Apr)
- Backend architecture is functional (24 Apr)
- Basic front-end UI for uploading picture (25 Apr)
Next Step:
- Evaluate CLIP’s tagging accuracy on sample clothing images
- Fine-tune the tagging system for better recommendations
- Test the backend integration with real-time user data
- Set up monitoring for model performance
- Front-end demo
FastMCP_RecSys
Project Details
- attarmau/StyleCLIP
- Apache License 2.0
- Last Updated: 5/1/2025
Recomended MCP Servers
An MCP server that enables interacting with the arXiv API using natural language
An unofficial MCP interface to interact with the PapersWithCode API
A Model Context Protocol Server for Interacting with Slack
OpenAI 接口管理 & 分发系统,支持 Azure、Anthropic Claude、Google PaLM 2 & Gemini、智谱 ChatGLM、百度文心一言、讯飞星火认知、阿里通义千问、360 智脑以及腾讯混元,可用于二次分发管理 key,仅单可执行文件,已打包好 Docker 镜像,一键部署,开箱即用. OpenAI key management...
CLI to set up and deploy MCP Servers to Cloudflare Workers in seconds. Just write TypeScript functions to...
AutoGPT is the vision of accessible AI for everyone, to use and to build on. Our mission is...
An MCP server inspired by devocs.io
Enable AI Agents to Control Unity
MCP server that uses arxiv-to-prompt to fetch and process arXiv LaTeX sources for precise interpretation of mathematical expressions...





