We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Dicklesworthstone/mcp_agent_mail'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: Nightly Maintenance
on:
schedule:
- cron: '17 3 * * *' # 03:17 UTC daily
workflow_dispatch: {}
jobs:
nightly:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.14'
allow-prereleases: true
- name: Install uv
run: curl -Ls https://astral.sh/uv/install.sh | sh
- name: Add uv to PATH
run: echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Cache uv
uses: actions/cache@v4
with:
path: |
~/.cache/uv
.venv
key: nightly-uv-${{ runner.os }}-${{ hashFiles('pyproject.toml', 'uv.lock') }}
restore-keys: |
nightly-uv-${{ runner.os }}-
- name: Sync dependencies (dev)
run: uv sync --dev
- name: Run migrations
run: uv run python -m mcp_agent_mail.cli migrate
- name: List projects
run: uv run python -m mcp_agent_mail.cli list-projects --include-agents