This project is a FastAPI server that exposes existing tools so they can be consumed by any MCP-compatible client, such as a CrewAI agent.
To install the dependencies, it is recommended to use a virtual environment. Once activated, run:
pip install "fastapi" "uvicorn[standard]" "pydantic"To start the server, run the following command from the root of the project:
uvicorn src.main:app --reload --port 8876The server will be available at http://127.0.0.1:8000.