Skip to content

🚀 Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

âš™ Prerequisites

💻 Installation

  1. Clone the repository:

    git clone https://github.com/nicholaswilde/mcp-server.git
    cd mcp-server
    

  2. Set up the Python virtual environment:

    python3 -m venv venv
    source venv/bin/activate
    

  3. Install dependencies: This project uses pip-tools to manage dependencies.

    pip install pip-tools
    task install
    

  4. Set up pre-commit hooks: Install the pre-commit hooks to ensure your commits adhere to the project's code style and quality standards.

    pre-commit install