Initial commit: MCP Hub Community Edition v3.0.0
Community edition generated from private repo via sync pipeline. Includes 9 plugins (WordPress, WooCommerce, WP Advanced, Gitea, n8n, Supabase, OpenPanel, Appwrite, Directus) with ~587 tools. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
44
plugins/openpanel/handlers/__init__.py
Normal file
44
plugins/openpanel/handlers/__init__.py
Normal file
@@ -0,0 +1,44 @@
|
||||
"""
|
||||
OpenPanel Handlers
|
||||
|
||||
Phase H.1: Core (25 tools)
|
||||
- events.py: Event tracking (9 tools - alias_user removed)
|
||||
- export.py: Data export (10 tools)
|
||||
- system.py: Health & stats (6 tools)
|
||||
|
||||
Phase H.2: Analytics (24 tools)
|
||||
- reports.py: Analytics reports (8 tools)
|
||||
- funnels.py: Funnel analysis (8 tools)
|
||||
- profiles.py: User profiles (8 tools)
|
||||
|
||||
Phase H.3: Management (24 tools)
|
||||
- projects.py: Project management (8 tools)
|
||||
- dashboards.py: Dashboard management (10 tools)
|
||||
- clients.py: API client management (6 tools)
|
||||
|
||||
Total: 73 tools
|
||||
"""
|
||||
|
||||
from plugins.openpanel.handlers import (
|
||||
clients,
|
||||
dashboards,
|
||||
events,
|
||||
export,
|
||||
funnels,
|
||||
profiles,
|
||||
projects,
|
||||
reports,
|
||||
system,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"events",
|
||||
"export",
|
||||
"system",
|
||||
"reports",
|
||||
"funnels",
|
||||
"profiles",
|
||||
"projects",
|
||||
"dashboards",
|
||||
"clients",
|
||||
]
|
||||
Reference in New Issue
Block a user