Clone the repository:
git clone https://github.com/PCODE-pl/MCPTap.git
cd MCPTapCreate a virtual environment:
python3.10 -m venv .venv
. .venv/bin/activateInstall dependencies:
pip install -r requirements.txtRun locally:
python proxy.pyFormat and linting are configured with Ruff.
The current Ruff configuration uses:
line length: 120
quote style: double
indent style: space
lint rules: E, F, W, Q, I
ignored rules: E203, E501