Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 508 Bytes

File metadata and controls

39 lines (28 loc) · 508 Bytes

Development

Clone the repository:

git clone https://github.com/PCODE-pl/MCPTap.git
cd MCPTap

Create a virtual environment:

python3.10 -m venv .venv
. .venv/bin/activate

Install dependencies:

pip install -r requirements.txt

Run locally:

python proxy.py

Format 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