AI-powered fitness content creator tools: video editing, image generation, workout plans, analytics.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-wmarceau-fitness-influencer": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
AI-powered fitness content creator tools: video editing, image generation, workout plans, analytics.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in health / entertainment
MCP server providing seamless access to FHIR APIs for AI tools and healthcare applications
The official MCP Server for the Mux API
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to control Unreal E…
MCP server for Withings health data — sleep, activity, heart, and body metrics.
MCP Security Weekly
Get CVE alerts and security updates for io.github.wmarceau/fitness-influencer and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Central development workspace for AI-powered automation assistants using the 3-Layer Architecture (Directive → Orchestration → Execution).
See PROJECT_INDEX.md for detailed file paths and switching between projects.
| Project | Status | Directory | Production URL |
|---|---|---|---|
| Fitness Influencer | Live | projects/fitness-influencer/ | Railway |
| Interview Prep | Live | interview-prep-pptx/ | Railway |
| Amazon Seller | Dev | projects/amazon-seller/ | - |
| Naples Weather | Dev | projects/naples-weather/ | - |
dev-sandbox/
├── projects/ # Individual AI assistant projects
│ ├── fitness-influencer/ # Fitness content automation
│ │ ├── src/ # Python scripts
│ │ ├── frontend/ # Web interface
│ │ └── README.md
│ ├── interview-prep/ # → symlink to interview-prep-pptx/
│ ├── amazon-seller/ # Amazon SP-API automation
│ │ └── src/
│ ├── naples-weather/ # Weather report generator
│ └── shared/ # Shared utilities across projects
│ ├── ai/ # AI services (Grok)
│ ├── google/ # Google APIs (Gmail, Sheets)
│ ├── analytics/ # Business analytics
│ └── communication/ # SMS, email
│
├── interview-prep-pptx/ # Railway-linked Interview Prep project
│ ├── src/
│ ├── frontend/
│ ├── Procfile
│ └── railway.json
│
├── execution/ # All execution scripts (skill access)
├── directives/ # SOPs in Markdown format
├── .claude/skills/ # Skill configurations
│
├── PROJECT_INDEX.md # Quick navigation guide
├── index.html # Main website homepage
├── setup_form.html # Fitness Influencer setup form
└── deploy_to_skills.py # Deployment pipeline
cd projects/fitness-influencer # Fitness Influencer
cd interview-prep-pptx # Interview Prep
cd projects/amazon-seller # Amazon Seller
| Project | Scripts | Frontend | Skill | Directive |
|---|---|---|---|---|
| Fitness | projects/fitness-influencer/src/ | projects/fitness-influencer/frontend/ | .claude/skills/fitness-influencer-operations/ | directives/fitness_influencer_operations.md |
| Interview | interview-prep-pptx/src/ | interview-prep-pptx/frontend/ | .claude/skills/interview-prep/ | directives/interview_prep.md |
| Amazon | projects/amazon-seller/src/ | TODO | .claude/skills/amazon-seller-operations/ | directives/amazon_seller_operations.md |
Common services used across projects (located in projects/shared/):
| Utility | Path | Used By |
|---|---|---|
| Grok AI Images | shared/ai/grok_image_gen.py | Fitness, Interview |
| Gmail Monitor | shared/google/gmail_monitor.py | Fitness, Amazon |
| Revenue Analytics | shared/analytics/revenue_analytics.py | Fitness, Amazon |
| Twilio SMS | shared/communication/twilio_sms.py | Fitness, Amazon |
cd interview-prep-pptx
railway up
railway domain
python deploy_to_skills.py --project fitness-influencer-operations
All projects share the root .env file:
# AI Services (All projects)
ANTHROPIC_API_KEY=xxx
XAI_API_KEY=xxx
# Google APIs (Fitness, Amazon)
GOOGLE_CREDENTIALS_PATH=credentials.json
# Amazon SP-API (Amazon only)
AMAZON_SELLER_ID=xxx
AMAZON_CLIENT_ID=xxx
AMAZON_CLIENT_
... [View full README on GitHub](https://github.com/MarceauSolutions/dev-sandbox#readme)