We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/markster-exec/mcp-unicorn'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
markster-ci.yml•1008 B
name: CI
on:
push:
branches: [main, master]
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "24"
- name: Install Node dependencies
run: npm install
- name: Run repo CI script if present
env:
MARKSTER_DOCS_API_KEY: ${{ secrets.MARKSTER_DOCS_API_KEY }}
MARKSTER_OPENAPI_URL: ${{ secrets.MARKSTER_OPENAPI_URL }}
run: |
if [ -x ./scripts/ci ]; then
./scripts/ci
exit $?
fi
if [ -f Makefile ]; then
make test
exit $?
fi
if [ -f package.json ]; then
npm test
exit $?
fi
if [ -f pyproject.toml ] || [ -f requirements.txt ]; then
python -m unittest
exit $?
fi
echo "No CI entrypoint found. Add ./scripts/ci or a Makefile."
exit 1