Skip to main content
Glama

Continuo Memory System

by GtOkAi
license-check.yml1.43 kB
name: License Check on: pull_request: paths: - '**/*.py' - 'LICENSE' - 'COMMERCIAL_LICENSE.md' jobs: check-license: name: Verify License Headers runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Check copyright headers run: | echo "Checking for copyright notices in Python files..." missing_copyright=0 for file in $(find continuo -name "*.py"); do if ! grep -q "Copyright.*D.D.*Gustavo Porto" "$file" && \ ! grep -q "AGPL" "$file" && \ [ "$(basename $file)" != "__init__.py" ]; then echo "Warning: $file may be missing copyright notice" missing_copyright=$((missing_copyright + 1)) fi done if [ $missing_copyright -gt 0 ]; then echo "Found $missing_copyright file(s) potentially missing copyright" echo "Ensure all significant files include copyright notice" else echo "All files checked OK" fi - name: Verify LICENSE file run: | if ! grep -q "AGPL" LICENSE; then echo "ERROR: LICENSE file does not contain AGPL" exit 1 fi if ! grep -q "D.D. & Gustavo Porto" LICENSE; then echo "ERROR: LICENSE missing copyright holders" exit 1 fi echo "LICENSE file verified"

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