Skip to main content
Glama
pipeline.yml•1.17 kB
name: Pipeline - MCP Server on: push: branches: - main jobs: build: uses: ./.github/workflows/codedeploy_build.yml permissions: contents: read id-token: write deploy-staging: needs: build uses: ./.github/workflows/codedeploy_deploy.yml with: environment: staging sha: ${{ needs.build.outputs.sha }} permissions: contents: read id-token: write test-staging: needs: deploy-staging runs-on: blacksmith-4vcpu-ubuntu-2404 steps: - uses: actions/checkout@v6 - name: Run integration tests against staging run: | echo "đź§Ş Running integration tests against staging..." # TODO: Add your staging integration/smoke tests here # Examples: # npm run test:integration # curl -f https://staging.your-service.com/health echo "âś… Integration tests passed" deploy-production: needs: [build, test-staging] uses: ./.github/workflows/codedeploy_deploy.yml with: environment: production sha: ${{ needs.build.outputs.sha }} permissions: contents: read id-token: write

Latest Blog Posts

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/useshortcut/mcp-server-shortcut'

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