Initial import from Proxmox host
This commit is contained in:
25
src/opnsense_mcp/tools/__init__.py
Normal file
25
src/opnsense_mcp/tools/__init__.py
Normal file
@@ -0,0 +1,25 @@
|
||||
"""Tool package registration."""
|
||||
|
||||
from mcp.server.fastmcp import FastMCP
|
||||
|
||||
from opnsense_mcp.tools import (
|
||||
aliases,
|
||||
dhcp,
|
||||
diagnostics,
|
||||
firewall,
|
||||
interfaces,
|
||||
nat,
|
||||
routes,
|
||||
system,
|
||||
)
|
||||
|
||||
|
||||
def register_all(mcp: FastMCP) -> None:
|
||||
system.register(mcp)
|
||||
interfaces.register(mcp)
|
||||
firewall.register(mcp)
|
||||
aliases.register(mcp)
|
||||
nat.register(mcp)
|
||||
dhcp.register(mcp)
|
||||
diagnostics.register(mcp)
|
||||
routes.register(mcp)
|
||||
Reference in New Issue
Block a user