Skip to main content
Glama

mcp-structured-memory

ci.yml2.17 kB
name: CI on: push: branches: [ main ] pull_request: branches: [ main ] jobs: test: runs-on: ubuntu-latest strategy: matrix: node-version: [20.x, 22.x] steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: 'npm' - name: Install dependencies run: npm ci - name: Run linting run: npm run lint - name: Run type checking run: npm run build - name: Run tests run: npm test - name: Run tests with coverage run: npm run test:coverage if: matrix.node-version == '20.x' - name: Upload coverage reports uses: codecov/codecov-action@v5 if: matrix.node-version == '20.x' with: files: ./coverage/lcov.info fail_ci_if_error: false build: runs-on: ubuntu-latest needs: test steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: '20.x' cache: 'npm' - name: Install dependencies run: npm ci - name: Build project run: npm run build - name: Verify build artifacts run: | test -f dist/index.js test -f dist/index.d.ts echo "Build artifacts verified successfully" lint-fix-check: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup Node.js uses: actions/setup-node@v4 with: node-version: '20.x' cache: 'npm' - name: Install dependencies run: npm ci - name: Check if lint --fix would make changes run: | npm run lint:fix if [ -n "$(git status --porcelain)" ]; then echo "❌ Code formatting issues found. Please run 'npm run lint:fix' locally and commit the changes." git diff exit 1 else echo "✅ Code formatting is correct" fi

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/nmeierpolys/mcp-structured-memory'

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