Initial pfsense-mcp: REST API v2 based MCP server (72 tools)

This commit is contained in:
root
2026-06-12 18:59:15 +00:00
commit ee6c626a80
22 changed files with 1438 additions and 0 deletions

25
pyproject.toml Normal file
View File

@@ -0,0 +1,25 @@
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pfsense-mcp"
version = "1.0.0"
description = "Model Context Protocol server for pfSense firewall management via REST API v2"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "pfSense MCP" }]
keywords = ["mcp", "pfsense", "firewall", "hermes"]
dependencies = [
"mcp>=1.0.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
"pydantic-settings>=2.0.0",
]
[project.scripts]
pfsense-mcp = "pfsense_mcp.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/pfsense_mcp"]