We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/brianirish/laravel-mcp-companion'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: CI
permissions:
contents: read
# Disabled - CI moved to Harness
# on:
# push:
# branches: [ main ]
# pull_request:
# branches: [ main ]
on: workflow_dispatch
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Lint with ruff
run: ruff check --fix .
- name: Type check with mypy
run: mypy --ignore-missing-imports .
- name: Run tests with pytest
run: pytest --cov --cov-branch --cov-report=xml
- name: Setup Node.js for MCP Inspector
uses: actions/setup-node@v4
with:
node-version: '20'
- name: MCP Inspector smoke test
run: |
npx @modelcontextprotocol/inspector --cli --method tools/list python laravel_mcp_companion.py | grep -q "search_laravel_docs"
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
if: success()
with:
files: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}
slug: brianirish/laravel-mcp-companion