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:
38
plugins/directus/handlers/__init__.py
Normal file
38
plugins/directus/handlers/__init__.py
Normal file
@@ -0,0 +1,38 @@
|
||||
"""
|
||||
Directus Plugin Handlers
|
||||
|
||||
Each handler module provides:
|
||||
1. Tool specifications (get_tool_specifications)
|
||||
2. Handler functions for each tool
|
||||
|
||||
Phase J.1: items (12) + collections (14) = 26 tools
|
||||
Phase J.2: files (12) + users (10) = 22 tools
|
||||
Phase J.3: access (12) + automation (12) = 24 tools
|
||||
Phase J.4: content (10) + dashboards (8) + system (10) = 28 tools
|
||||
|
||||
Total: 100 tools
|
||||
"""
|
||||
|
||||
from plugins.directus.handlers import (
|
||||
access,
|
||||
automation,
|
||||
collections,
|
||||
content,
|
||||
dashboards,
|
||||
files,
|
||||
items,
|
||||
system,
|
||||
users,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"items",
|
||||
"collections",
|
||||
"files",
|
||||
"users",
|
||||
"access",
|
||||
"automation",
|
||||
"content",
|
||||
"dashboards",
|
||||
"system",
|
||||
]
|
||||
Reference in New Issue
Block a user