Files
fastapi_mcp/INSTALL.md
Itay Shemer 002f854b33 cosmetics
2025-03-08 15:08:13 +02:00

1004 B

Installation Guide

This guide will help you install and set up FastAPI-MCP on your system.

Prerequisites

  • Python 3.10 or higher
  • pip (Python package installer)

Installation from PyPI

The simplest way to install FastAPI-MCP is directly from PyPI:

pip install fastapi-mcp

Installation from Source

You can also install FastAPI-MCP from source:

# Clone the repository
git clone https://github.com/tadata-org/fastapi_mcp.git
cd fastapi-mcp

# Install the package
pip install -e .

Verifying Installation

To verify that FastAPI-MCP is installed correctly, run:

fastapi-mcp --help

You should see the help message for the FastAPI-MCP CLI.

Installing Development Dependencies

If you want to contribute to FastAPI-MCP or run the tests, you can install the development dependencies:

pip install -e ".[dev]"

Running Tests

To run the tests, make sure you have installed the development dependencies, then run:

pytest