Initial commit

This commit is contained in:
Aodhan Collins
2026-03-02 23:29:58 +00:00
commit 08c6e14616
12 changed files with 2121 additions and 0 deletions

19
pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[project]
name = "danbooru-mcp"
version = "0.1.0"
description = "MCP server for validating and searching Danbooru tags via SQLite FTS5"
requires-python = ">=3.10"
dependencies = [
"mcp[cli]>=1.0.0",
"requests>=2.31.0",
]
[project.scripts]
danbooru-mcp = "src.server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]