Skip to main content
Glama

Continuo Memory System

by GtOkAi
tests.yml1.66 kB
name: Tests on: push: branches: [ main, develop ] pull_request: branches: [ main ] jobs: test: name: Test Python ${{ matrix.python-version }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ubuntu-latest, macos-latest] python-version: ['3.11'] steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} cache: 'pip' - name: Install dependencies run: | python -m pip install --upgrade pip pip install -e .[dev] pip install -r requirements.txt - name: Run tests run: | pytest tests/ -v - name: Test MCP server startup run: | python continuo/mcp_memory_server.py --provider local --db-path /tmp/test_db & SERVER_PID=$! sleep 5 kill $SERVER_PID || true lint: name: Lint runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: '3.11' - name: Install linting tools run: | python -m pip install --upgrade pip pip install ruff black mypy - name: Run ruff run: ruff check continuo/ examples/ tests/ --fix - name: Check for remaining issues run: ruff check continuo/ examples/ tests/ continue-on-error: true - name: Check formatting run: black --check continuo/ examples/ tests/ - name: Type check run: mypy continuo/ --ignore-missing-imports

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/GtOkAi/continuo-memory-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server