Initial commit: BunnyCDN MCP server with K8s deployment
- FastMCP server with 12 tools (pullzone, cache, statistics, shield) - Dockerfile with multi-stage build (python:3.11-slim + uv) - K8s manifests (Deployment + Service) - Gitea Actions CI/CD pipeline (build → push → deploy)
This commit is contained in:
13
bunnycdn_mcp/tools/__init__.py
Normal file
13
bunnycdn_mcp/tools/__init__.py
Normal file
@@ -0,0 +1,13 @@
|
||||
"""Tool registration dispatcher."""
|
||||
|
||||
from .cache import register_cache_tools
|
||||
from .pullzone import register_pullzone_tools
|
||||
from .shield import register_shield_tools
|
||||
from .statistics import register_statistics_tools
|
||||
|
||||
|
||||
def register_all_tools(mcp):
|
||||
register_pullzone_tools(mcp)
|
||||
register_cache_tools(mcp)
|
||||
register_statistics_tools(mcp)
|
||||
register_shield_tools(mcp)
|
||||
Reference in New Issue
Block a user