[project]
name = "mcp-server-builder"
version = "0.1.1"
description = "MCP server for searching MCP protocol and FastMCP documentation"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Praveen Chamarthi", email = "1090396+praveenc@users.noreply.github.com" }
]
keywords = ["mcp", "model-context-protocol", "fastmcp", "documentation", "search"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Documentation",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.13"
dependencies = [
"mcp[cli]>=1.21.1,<1.23",
"fastmcp>=2.13.3",
"pydantic>=2.12.5",
"loguru>=0.7.3",
"nltk>=3.9.2",
]
[project.urls]
Homepage = "https://github.com/praveenc/mcp-server-builder"
Repository = "https://github.com/praveenc/mcp-server-builder"
Documentation = "https://github.com/praveenc/mcp-server-builder#readme"
[project.scripts]
mcp-server-builder = "mcp_server_builder.server:main"
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.26.0",
"pytest-cov>=4.1.0",
"ruff>=0.9.0",
"pyright>=1.1.390",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_server_builder"]
[tool.hatch.build.targets.sdist]
include = ["src/mcp_server_builder", "README.md", "LICENSE"]
[tool.ruff]
line-length = 99
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP", "B", "C4", "SIM"]
ignore = ["E501"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.pyright]
pythonVersion = "3.13"
typeCheckingMode = "standard"
include = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"