first commit

This commit is contained in:
2026-01-04 14:32:01 +03:00
commit f7ceacd07e
15 changed files with 2619 additions and 0 deletions

31
pyproject.toml Normal file
View File

@@ -0,0 +1,31 @@
[project]
name = "ctfd-mcp"
version = "0.1.0"
description = "MCP server for CTFd that lets regular users browse challenges, manage dynamic instances, and submit flags."
readme = "README.md"
requires-python = ">=3.13"
license = { file = "LICENSE" }
dependencies = [
"httpx>=0.28.1",
"mcp>=1.23.3",
"python-dotenv>=1.2.1",
]
[project.urls]
Homepage = "https://github.com/umbra2728/ctfd-mcp"
Repository = "https://github.com/umbra2728/ctfd-mcp"
Issues = "https://github.com/umbra2728/ctfd-mcp/issues"
[dependency-groups]
dev = [
"pre-commit>=3.6.0",
"ruff>=0.5.0",
]
[tool.ruff]
line-length = 88
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = ["E501"]