pyproject.toml•1.27 kB
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mcp-server-boilerplate"
version = "0.1.0"
description = "A Model Context Protocol (MCP) server boilerplate with tools, resources, and prompts built using FastMCP"
readme = "README.md"
requires-python = ">=3.12"
license = {text = "MIT"}
authors = [
{name = "Shaza", email = ""},
]
keywords = ["mcp", "model-context-protocol", "fastmcp", "ai", "tools"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"fastmcp>=2.11.3",
]
[project.urls]
Homepage = "https://github.com/YOUR_USERNAME/mcp_server"
Repository = "https://github.com/YOUR_USERNAME/mcp_server"
Issues = "https://github.com/YOUR_USERNAME/mcp_server/issues"
[project.scripts]
mcp-server-boilerplate = "mcp_server_boilerplate.cli:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"black>=22.0",
"ruff>=0.1.0",
]