[project]
name = "fastapi-mcp-server"
version = "0.1.0"
description = "MCP server for introspecting and working with FastAPI applications"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
keywords = ["fastapi", "mcp", "model-context-protocol", "ai", "introspection"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Framework :: FastAPI",
]
dependencies = [
"mcp>=1.0.0",
"fastapi>=0.100.0",
"pydantic>=2.0.0",
]
[project.urls]
Homepage = "https://github.com/fastapi/fastapi-mcp-server"
Repository = "https://github.com/fastapi/fastapi-mcp-server"
Issues = "https://github.com/fastapi/fastapi-mcp-server/issues"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"httpx>=0.24.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/fastapi_mcp_server"]