[project]
name = "mcp-server-ietf"
version = "0.1.0"
description = "A Model Context Protocol server for fetching ietf documents for LLMs"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
dependencies = [
"mcp[cli]>=1.3.0",
"python-dotenv>=1.0.1",
"requests>=2.32.3",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
mcp-server-ietf = "mcp_server_ietf:main"
[dependency-groups]
dev = [
"pytest>=8.3.5",
"ruff>=0.9.9",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_classes = "Test*"
python_functions = "test_*"