Spaces:
Sleeping
Sleeping
File size: 14,216 Bytes
c143d93 f638aca f76a4ef c143d93 f638aca c143d93 f638aca c143d93 b1f502e c143d93 f638aca c143d93 f638aca f76a4ef f638aca 3fba179 f638aca f76a4ef f638aca c143d93 f76a4ef c143d93 f638aca f76a4ef 3fba179 f76a4ef c143d93 f638aca f76a4ef b1f502e f76a4ef c143d93 f638aca c143d93 f638aca c143d93 f638aca c143d93 f638aca c143d93 f76a4ef f638aca f76a4ef f638aca c143d93 f638aca c143d93 f638aca c143d93 f638aca c143d93 f638aca c143d93 f638aca c143d93 f638aca c143d93 f638aca f76a4ef f638aca b1f502e f638aca c143d93 f638aca c143d93 b1f502e f638aca f76a4ef 3fba179 f76a4ef 3fba179 f638aca f76a4ef 3fba179 f638aca c143d93 f76a4ef f638aca aee78d5 f638aca f76a4ef f638aca f76a4ef f638aca f76a4ef b1f502e f76a4ef f638aca f76a4ef 3fba179 f638aca f76a4ef f638aca c143d93 f638aca f76a4ef f638aca f76a4ef aee78d5 f76a4ef b1f502e f76a4ef f638aca c143d93 f638aca c143d93 f638aca c143d93 8d62a8a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 |
# Remote MCP Server Implementation Plan π
## π― Project Overview
Transform FoodWise from a local MCP server into a cloud-hosted, accessible-anywhere inventory management system using HuggingFace Spaces. This approach focuses on simplicity and educational value for developers learning MCP patterns.
**Key Benefits (current):**
- Remote access to inventory management from anywhere
- Free hosting with Docker support
- Keep existing Python FastMCP code
- Educational example for the MCP community
## ποΈ Architecture Vision
### Current State (Local MCP)
```
Claude Desktop β Local FastMCP Server β Notion API
```
### Target State (HuggingFace Spaces)
```
Claude Desktop (via supergateway) / Any configurable MCP client β HF Spaces (HTTP MCP) β Notion API
β Environment Variables
```
**Why This Is Better:**
- β
**Simple**: No complex gateway or infrastructure
- β
**Educational**: Clear, single-container deployment
- β
**Free**: HuggingFace Spaces hosting
- β
**Proven**: FastAPI + Docker examples exist
## π§ Technical Components
### 1. HuggingFace Spaces Docker Container
- **Existing FastMCP Server**: Keep all your current Python code
- **Docker Deployment**: Simple `Dockerfile` + `pyproject.toml` (uv)
- **Port 7860**: HuggingFace Spaces standard port
- **Environment Variables**: Secrets management for `NOTION_SECRET`, `NOTION_INVENTORY_DB_ID`, optional `NOTION_SHOPPING_DB_ID`
### 2. Access Model
- Current: OAuth disabled (`hf_oauth: false`) to allow public Streamable HTTP MCP at `/mcp/`
- Optional later: Enable OAuth if you need gated access
### 3. Deployment Simplicity
- **Single Platform**: Only HuggingFace Spaces (no multiple options)
- **Git-based**: Push to deploy, just like local development
- **Free Hosting**: Perfect for educational and personal use
- **Community Visibility**: Others can see and learn from your MCP server
### 4. Educational Value
- **Clear Example**: Simple Docker + FastMCP pattern
- **Minimal Complexity**: Focus on MCP concepts, not infrastructure
- **Open Source**: Visible implementation for community learning
- **Reproducible**: Easy for others to fork and adapt
## π Implementation Phases
### Phase 1: HuggingFace Spaces Deployment (MVP)
**Goal (done)**: Deploy existing FastMCP server to HuggingFace Spaces with public HTTP MCP
**Branch Workflow:**
```bash
# β
Already on remote-mcp branch
# β
Using Python 3.12.8 with uv
# β
Project structure ready
```
**Implementation Tasks:**
- [x] Create Dockerfile for HuggingFace Spaces (Python 3.12 + uv)
- [x] Create `main.py` entry point (HTTP MCP on 7860)
- [x] Create HuggingFace Space with Docker SDK
- [x] Configure environment variables (`NOTION_SECRET`, `NOTION_INVENTORY_DB_ID`, optional `NOTION_SHOPPING_DB_ID`)
- [x] Remote health and CORS validation for `https://claude.ai`
- [x] Test with MCP Inspector (remote)
- [ ] Add `.env.example` to Space repo
- [ ] Add simple smoke test instructions for Space logs
**Success Criteria:**
- β
HuggingFace Space builds and runs successfully
- β
MCP Inspector works against `/mcp/`
- β
Claude Desktop connects via Streamable HTTP using `supergateway`
- β οΈ Note: Claude Web does not currently allow user-defined connectors; use Desktop or other configurable MCP clients
- β
All inventory + shopping tools function remotely
**Educational Value:**
- Simple Docker + FastMCP deployment pattern
- Clear authentication flow with built-in OAuth
- Minimal infrastructure complexity
- Open source example for community
### Phase 2: Community & Polish (Optional)
**Goal**: Make the MCP server a great learning resource
**Tasks:**
- [ ] Add comprehensive README with setup instructions
- [ ] Document the MCP tool implementations
- [ ] Create video tutorial for deployment process
- [ ] Write blog post about remote MCP patterns
- [ ] Add monitoring and health checks
**Success Criteria:**
- β
Other developers can easily replicate the setup
- β
Clear documentation of MCP patterns used
- β
Stable, production-ready deployment
- β
Community adoption and contributions
## π οΈ Development Setup
### HuggingFace Space Configuration (current)
```yaml
# README.md metadata
---
title: FoodWise Remote MCP
emoji: π₯
colorFrom: green
colorTo: blue
sdk: docker
app_port: 7860
hf_oauth: false
---
```
### Recommended Project Structure
```
foodwise-remote-mcp/
βββ .env.example # Template for environment variables (commit)
βββ .env # Local development environment (gitignore)
βββ .gitignore # Include .env, exclude .env.example
βββ pyproject.toml # Dependencies and project config
βββ uv.lock # Locked dependency versions
βββ README.md # HuggingFace Space configuration
βββ Dockerfile # Container setup using uv
βββ main.py # FastMCP server entry point
βββ src/
βββ foodwise/
βββ mcp_server/ # Your existing FastMCP code
```
### Sample Dockerfile (Educational Example)
```dockerfile
FROM python:3.12
# Install uv for fast Python package management
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /usr/local/bin/
# HuggingFace Spaces requires user with ID 1000
RUN useradd -m -u 1000 user
USER user
# Environment setup
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH \
PYTHONPATH=/home/user/app
WORKDIR $HOME/app
# Copy Python project configuration
COPY --chown=user pyproject.toml uv.lock* ./
# Install dependencies using uv (much faster than pip)
RUN uv sync --frozen --no-cache
# Copy FastMCP server code and environment config
COPY --chown=user . .
# Expose HuggingFace Spaces port
EXPOSE 7860
# Start FastMCP server using uv run
CMD ["uv", "run", "python", "main.py"]
```
### Local Development & Testing
```bash
# Set up development environment with uv
uv sync
# Create .env file for local development
cp .env.example .env
# Edit .env with your NOTION_SECRET / IDs and other variables
# Run locally for development (HTTP MCP on port 7860)
uv run python main.py
# Test Docker container locally with .env file
docker build -t foodwise-mcp-test .
docker run -p 7860:7860 --env-file .env foodwise-mcp-test
# Test MCP connection (option A): MCP Inspector against HTTP endpoint
mcp-inspector http://localhost:7860/mcp/
# Test MCP connection (option B): Bridge Claude Desktop via supergateway
npx supergateway --streamableHttp "http://localhost:7860/mcp/" --logLevel debug
```
### Environment Configuration
```bash
# .env.example (commit to repo)
NOTION_SECRET=your_notion_integration_token_here
NOTION_INVENTORY_DB_ID=...
# Optional if using shopping features
NOTION_SHOPPING_DB_ID=...
ENVIRONMENT=development
LOG_LEVEL=DEBUG
# .env (local only, add to .gitignore)
NOTION_SECRET=sk-actual-token-here
NOTION_INVENTORY_DB_ID=...
NOTION_SHOPPING_DB_ID=...
ENVIRONMENT=development
LOG_LEVEL=DEBUG
```
## π Security Considerations
### Access Summary (current)
1. Public Streamable HTTP MCP endpoint at `/mcp/`
2. Environment secrets: `NOTION_SECRET` and database IDs set in Space settings
3. Optional: enable OAuth later if gated access is needed
### Built-in Security Benefits
- **HTTPS by Default**: HuggingFace Spaces use HTTPS automatically
- **No Custom Auth**: Leverage HF's proven authentication system
- **Environment Variables**: Secure secret management via HF Spaces settings
- **Container Isolation**: Docker provides process isolation
### Development Security Practices
- **Local Development**: Use `.env` files (never commit actual secrets)
- **Production**: Store secrets in HuggingFace Spaces environment variables
- **Dependency Management**: Keep `uv.lock` updated for reproducible builds
- **Environment Separation**: Use different `.env` files for dev/staging/production
- **Monitor Access**: Review Space logs for unusual activity
### Token Proxy Mode
- When `MCP_AUTH_TOKEN` is set:
- MCP upstream runs on `127.0.0.1:7870`
- Proxy serves `/mcp/` on public `PORT` (7860)
- Prefer header auth; `?key=` is available for Desktop bridge compatibility
## π Simple Monitoring
### HuggingFace Spaces Built-in Features
- **Container Logs**: Available in Space settings
- **Build Logs**: Visible during deployment
- **Usage Stats**: Basic metrics provided by HF
- **Health Status**: Automatic container health monitoring
### Optional Enhancements
- Add simple health check endpoint (`/health`)
- Log MCP tool usage for debugging
- Monitor Notion API rate limits
- Add basic error handling and logging
## π Simple Deployment Strategy
### Git-Based Deployment (HuggingFace Spaces)
1. **Create Space**: Docker-based HuggingFace Space
2. **Environment Setup**: Configure secrets in Space settings
3. **Push Code**: Git push to Space repo triggers build and deploy
4. **Test & Iterate**: Validate via MCP Inspector and Claude
### Deployment Steps (keeping Space as separate repo or pushing from main)
```bash
# Option A) Push directly from the main repo (recommended)
# In /Users/leowalker/Documents/Projects/FoodWise
git remote add hf https://huggingface.co/spaces/LeoWalker/foodwise-remote-mcp
git push hf main:main
# Option B) (Deprecated) Using a separate Space clone directory
# If you previously used a dedicated clone, you can now push directly from the main repo.
git add . && git commit -m "Sync with main"
git push origin main
# 2. Set up project structure
uv init --no-readme # If starting fresh, or use existing project
uv add fastapi uvicorn python-dotenv mcp
uv add your-existing-dependencies
# 3) Configure environment (Space settings β Secrets)
# - NOTION_SECRET: your_actual_token
# - NOTION_INVENTORY_DB_ID: your_inventory_db
# - (optional) NOTION_SHOPPING_DB_ID: your_shopping_db
# 4) Restart Space after pushing to trigger rebuild
# 5. Monitor deployment
# Check Space logs for build status and container health
```
### Simple Rollback
- **Git Revert**: Revert the last push to the Space repo
- **Space Restart**: Use the Space restart/factory reset if needed
- **Environment Rollback**: Revert environment variable changes in Space settings
## Connector References
### Claude Desktop (local bridge)
```json
{
"mcpServers": {
"foodwise-remote": {
"command": "npx",
"args": ["supergateway", "--streamableHttp", "https://leowalker-foodwise-remote-mcp.hf.space/mcp/?key=$MCP_AUTH_TOKEN"]
}
}
}
```
### Claude Web
- Not currently user-configurable for custom MCP connectors. Use Claude Desktop with `supergateway` or other MCP clients that allow configuring an HTTP endpoint.
## π‘ Potential Future Enhancements
### Educational Extensions
- **Multiple MCP Tools**: Add more inventory management tools
- **Error Handling**: Demonstrate robust error handling patterns
- **Caching**: Show how to cache Notion API responses
- **Testing**: Add comprehensive test suite for MCP tools
- **Documentation**: Create detailed MCP development guides
### Community Features
- **Fork-Friendly**: Make it easy for others to customize
- **Tutorial Series**: Step-by-step guides for each component
- **Video Walkthroughs**: Screen recordings of the deployment process
- **Discussion Forum**: HuggingFace Community tab for questions
- **Templates**: Reusable templates for other MCP servers
### Advanced MCP Patterns (Optional)
- **Resource Streaming**: Demonstrate MCP resource capabilities
- **Prompt Templates**: Show MCP prompt management
- **Tool Composition**: Chain multiple MCP tools together
- **State Management**: Handle stateful MCP interactions
## π Educational Success Metrics
### Learning & Community Impact
- **Community Adoption**: Others fork and adapt the example
- **Documentation Quality**: Clear, comprehensive setup guides
- **Tutorial Engagement**: High completion rates for tutorials
- **Support Quality**: Helpful responses in community discussions
### Technical Excellence
- **Reliability**: Consistent uptime for demonstration purposes
- **Simplicity**: Easy to understand and replicate
- **Best Practices**: Demonstrates MCP development patterns
- **Performance**: Responsive for typical demo usage
## π Getting Started
Ready to begin? Here's the simplified path:
### Quick Start Checklist
#### Pre-Development Setup β
1. **β
Branch**: Already on `remote-mcp` branch
2. **β
Python**: Using Python 3.12.8 with uv
3. **β
Project Structure**: Existing FastMCP server ready
#### Implementation Steps
1. **π§ Prepare Files**: Create .env.example, Dockerfile, main.py
2. **π§ͺ Test Locally**: Claude Desktop + MCP Inspector validation
3. **π Deploy**: Create HuggingFace Space with OAuth
4. **β
Validate**: Test remote deployment end-to-end
#### Testing Workflow
```bash
# Phase 1: Local testing (before any commits)
uv run python main.py # Start local server
# Test Claude Desktop connection β localhost:7860
# Test MCP Inspector β localhost:7860
# Phase 2: Commit and deploy
git add . && git commit -m "Add HuggingFace Spaces deployment"
# Phase 3: Remote testing (after deployment)
# Test Claude Desktop β https://your-space.hf.space
# Test MCP Inspector β https://your-space.hf.space
```
### Next Steps (Ready to Execute!)
- **Phase 1**: Create deployment files and test locally
- **Phase 2**: Deploy to HuggingFace Spaces
- **Phase 3**: Validate with Claude Desktop and MCP Inspector
- **Phase 4**: Document and share as educational example
### MCP Inspector Integration
```bash
# Install MCP Inspector (if not already installed)
npm install -g @mcp/inspector
# Test local server
mcp-inspector http://localhost:7860
# Test remote server after deployment
mcp-inspector https://your-space.hf.space
```
**MCP Inspector Benefits:**
- Interactive tool testing without Claude Desktop
- Debug tool parameters and responses
- Validate all MCP tools work correctly
- Great for development and troubleshooting
*This plan is now ready for execution with proper branch workflow and comprehensive testing!*
---
*This simplified plan transforms FoodWise into an accessible, educational example of remote MCP server deployment using HuggingFace Spaces. Perfect for developers learning MCP patterns!*
|