Skip to content

Harden MCP server, add tools, tests, CI, Docker, multi-model and mult… #1

Harden MCP server, add tools, tests, CI, Docker, multi-model and mult…

Harden MCP server, add tools, tests, CI, Docker, multi-model and mult… #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install "fastmcp==2.11.3" "httpx>=0.27.0" pytest ruff
- name: Lint
run: ruff check mcp-server tests
- name: Test
run: pytest -q