TikTok automation: post videos, get analytics, manage comments
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-wmarceau-tiktok-creator": {
"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.
Central development workspace for AI-powered automation assistants using the 3-Layer Architecture (Directive → Orchestration → Execution).
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.
Click any tool to inspect its schema.
Be 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 marketing
DataForSEO API modelcontextprotocol server
一键同步文章到多个内容平台,支持今日头条、WordPress、知乎、简书、掘金、CSDN、typecho各大平台,一次发布,多平台同步发布。解放个人生产力
MCP server for the PostFast API — schedule and manage social media posts via AI tools
Google Ads MCP with MCC support: 35 tools for campaigns, keywords, reporting, GAQL.
MCP Security Weekly
Get CVE alerts and security updates for io.github.wmarceau/tiktok-creator 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)