We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ahmedelshazly27/opendss-mcp-server1'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: Linting
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Check code formatting with black
run: |
black --check src/ tests/ examples/
- name: Lint with pylint
run: |
pylint src/opendss_mcp --exit-zero
- name: Type check with mypy
run: |
mypy src/opendss_mcp --ignore-missing-imports
continue-on-error: true