We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/karaage0703/mcp-rag-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
name: Ruff
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff==0.9.1
- name: Run Ruff Check
run: ruff check --line-length=127
- name: Run Ruff Format Check
run: ruff format --check --diff --line-length=127