A collection of utility scripts, MCP servers, and random tools for various automation tasks.
.
├── tools/
│ ├── downloaders/ # Media download scripts (YouTube, podcasts, etc.)
│ └── ... # Other utility scripts
├── mcp-servers/ # Model Context Protocol servers
└── .venv/ # Python virtual environment
Python scripts for downloading media from various sources including YouTube, podcasts, RSS feeds, and Spotify.
See tools/downloaders/README.md for detailed documentation.
Quick start:
cd tools/downloaders
python main.pyComing soon. MCP servers will be placed in the mcp-servers/ directory.
Each tool directory contains its own requirements. For the downloaders:
cd tools/downloaders
pip install yt-dlp feedparser requestsWhen adding new tools:
- Place utility scripts and tools in
tools/subdirectories - Place MCP servers in
mcp-servers/ - Include a README.md with usage instructions
- Add dependencies to requirements.txt or document installation steps
- Update this root README with a brief description
This repository uses Python virtual environments. To set up:
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install -r requirements.txt