Professional MCP server for intelligent subscription management with Gmail + MySQL integration.
- 16 MCP Tools: Gmail search, AI extraction, MySQL CRUD, gap detection, proactive alerts
- Gmail Integration: Search and extract subscription emails
- MySQL Database: Persistent storage with state management
- AI Extraction: Parse subscription details from emails
- Gap Detection: Find duplicates, missing data, price anomalies
- Proactive Alerts: 3-day renewal notifications
pip install -r requirements.txtmysql -u root -p
CREATE DATABASE subscription_tracker;
exit
mysql -u root -p subscription_tracker < sql/schema.sqlcp config.example.json config.json
# Edit config.json with your MySQL password and Google OAuth credentials- Download
credentials.jsonfrom Google Cloud Console - Place in project root
- Run:
python3 src/setup.py
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"subscription-tracker": {
"command": "python3",
"args": ["/path/to/subscription-tracker-mcp/src/mcp_server.py"],
"env": {}
}
}
}Quit completely (Cmd+Q) and reopen.
Ask Claude:
- "List all my subscriptions"
- "Search Gmail for Netflix subscription emails"
- "Check for renewals in the next 7 days"
- "Detect duplicate subscriptions"
subscription-tracker-mcp/
├── src/ # Python modules
├── sql/ # Database schema
├── config.json # Configuration
├── requirements.txt # Dependencies
└── README.md # This file
Personal use project.