Initial commit

This commit is contained in:
caoimhinr 2026-06-02 23:07:29 +02:00
commit 6a1b671d79
3 changed files with 309 additions and 0 deletions

20
pyproject.toml Normal file
View file

@ -0,0 +1,20 @@
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "pastebin-mcp"
version = "0.1.0"
description = "MCP server for the homelab pastebin service"
requires-python = ">=3.11"
dependencies = [
"mcp[cli]>=1.0",
"httpx>=0.28",
]
[project.scripts]
pastebin-mcp = "mcp_server:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["pastebin_mcp*"]