Skip to content

Commit 575340e

Browse files
committed
readme
1 parent 002f854 commit 575340e

File tree

4 files changed

+22
-4
lines changed

4 files changed

+22
-4
lines changed

INSTALL.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,19 @@ This guide will help you install and set up FastAPI-MCP on your system.
77
- Python 3.10 or higher
88
- pip (Python package installer)
99

10-
## Installation from PyPI
10+
## Installation from PyPI (Recommended)
1111

12-
The simplest way to install FastAPI-MCP is directly from PyPI:
12+
The recommended way to install FastAPI-MCP is directly from [PyPI](https://pypi.org/project/fastapi-mcp/):
1313

1414
```bash
1515
pip install fastapi-mcp
1616
```
1717

18+
This will install the latest stable version of FastAPI-MCP along with all its dependencies.
19+
1820
## Installation from Source
1921

20-
You can also install FastAPI-MCP from source:
22+
If you need the latest development version or want to contribute to the project, you can install FastAPI-MCP from source:
2123

2224
```bash
2325
# Clone the repository

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
A magical, zero-configuration tool for generating Model Context Protocol (MCP) servers from FastAPI applications.
44

5+
[![PyPI version](https://badge.fury.io/py/fastapi-mcp.svg)](https://pypi.org/project/fastapi-mcp/)
6+
[![Python Versions](https://img.shields.io/pypi/pyversions/fastapi-mcp.svg)](https://pypi.org/project/fastapi-mcp/)
7+
58
## Features
69

710
- **Automatic discovery** of all FastAPI endpoints in your application
@@ -15,11 +18,13 @@ A magical, zero-configuration tool for generating Model Context Protocol (MCP) s
1518

1619
## Installation
1720

21+
You can install FastAPI-MCP directly from [PyPI](https://pypi.org/project/fastapi-mcp/):
22+
1823
```bash
1924
pip install fastapi-mcp
2025
```
2126

22-
For detailed installation instructions, see [INSTALL.md](INSTALL.md).
27+
For detailed installation instructions and alternative methods, see [INSTALL.md](INSTALL.md).
2328

2429
## Usage
2530

pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ dependencies = [
4040
Homepage = "https://github.com/tadata-org/fastapi_mcp"
4141
Documentation = "https://github.com/tadata-org/fastapi_mcp#readme"
4242
"Bug Tracker" = "https://github.com/tadata-org/fastapi_mcp/issues"
43+
"PyPI" = "https://pypi.org/project/fastapi-mcp/"
44+
"Source Code" = "https://github.com/tadata-org/fastapi_mcp"
45+
"Changelog" = "https://github.com/tadata-org/fastapi_mcp/blob/main/CHANGELOG.md"
4346

4447
[project.optional-dependencies]
4548
dev = [

setup.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,12 @@
3636
"Framework :: FastAPI",
3737
],
3838
keywords=["fastapi", "mcp", "llm", "claude", "ai", "tools", "api", "conversion"],
39+
project_urls={
40+
"Homepage": "https://github.com/tadata-org/fastapi_mcp",
41+
"Documentation": "https://github.com/tadata-org/fastapi_mcp#readme",
42+
"Bug Tracker": "https://github.com/tadata-org/fastapi_mcp/issues",
43+
"PyPI": "https://pypi.org/project/fastapi-mcp/",
44+
"Source Code": "https://github.com/tadata-org/fastapi_mcp",
45+
"Changelog": "https://github.com/tadata-org/fastapi_mcp/blob/main/CHANGELOG.md",
46+
},
3947
)

0 commit comments

Comments
 (0)