Under Development
A grab-bag of small MCP (Model Context Protocol) servers.
Each folder is an independent server (usually a tiny Python package) exposing a handful of tools.
Most servers can be run with uv:
# from within a server directory
uv run <script-name>Example:
cd conversations
uv run conversationsIf you don’t have uv installed:
python -m pip install uvUse the helper to list servers and their runnable entrypoints:
python3 scripts/list_servers.pyOr list just a couple:
python3 scripts/list_servers.py current_date_time wikipedia_mcpValidate the collection structure (missing READMEs, missing entrypoints, etc.):
python3 scripts/validate_collection.py- Each server manages its own dependencies via its
pyproject.toml. - This repo intentionally avoids forcing a single monorepo-style build system.