mcp-proxy-adapter 6.6.8__tar.gz → 6.6.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/PKG-INFO +1 -1
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/app.py +79 -78
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/config_builder.py +76 -10
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/generate_config.py +17 -15
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/version.py +1 -1
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter.egg-info/PKG-INFO +1 -1
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/pyproject.toml +1 -1
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/README.md +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/__init__.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/__main__.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/__init__.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/handlers.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/middleware/__init__.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/middleware/base.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/middleware/command_permission_middleware.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/middleware/error_handling.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/middleware/factory.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/middleware/logging.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/middleware/performance.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/middleware/protocol_middleware.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/middleware/transport_middleware.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/middleware/unified_security.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/middleware/user_info_middleware.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/schemas.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/tool_integration.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/tools.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/__init__.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/auth_validation_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/base.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/builtin_commands.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/catalog_manager.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/cert_monitor_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/certificate_management_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/command_registry.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/config_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/dependency_container.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/dependency_manager.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/echo_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/health_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/help_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/hooks.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/key_management_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/load_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/plugins_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/protocol_management_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/proxy_registration_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/reload_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/result.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/role_test_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/roles_management_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/security_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/settings_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/ssl_setup_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/token_management_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/transport_management_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/unload_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/config.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/__init__.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/app_factory.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/app_runner.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/auth_validator.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/certificate_utils.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/client.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/client_manager.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/client_security.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/config_converter.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/config_validator.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/crl_utils.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/errors.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/logging.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/mtls_asgi.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/mtls_asgi_app.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/mtls_server.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/protocol_manager.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/proxy_client.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/proxy_registration.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/role_utils.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/security_adapter.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/security_factory.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/security_integration.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/server_adapter.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/server_engine.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/settings.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/ssl_utils.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/transport_manager.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/unified_config_adapter.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/utils.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/custom_openapi.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/__init__.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/basic_framework/__init__.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/basic_framework/commands/__init__.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/basic_framework/hooks/__init__.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/basic_framework/main.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/bugfix_certificate_config.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/cert_manager_bugfix.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/check_config.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/commands/__init__.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/config_cli.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/create_test_configs.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/debug_request_state.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/debug_role_chain.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/demo_client.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/full_application/__init__.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/full_application/commands/__init__.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/full_application/commands/custom_echo_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/full_application/commands/dynamic_calculator_command.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/full_application/hooks/__init__.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/full_application/hooks/application_hooks.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/full_application/hooks/builtin_command_hooks.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/full_application/main.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/full_application/proxy_endpoints.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/generate_certificates.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/proxy_registration_example.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/required_certificates.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/run_example.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/run_full_test_suite.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/run_proxy_server.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/run_security_tests_fixed.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/security_test_client.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/setup_test_environment.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/simple_protocol_test.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/test_chk_hostname_automated.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/test_config.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/test_config_builder.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/test_examples.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/test_framework_complete.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/test_mcp_server.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/test_protocol_examples.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/universal_client.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/update_config_certificates.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/main.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/openapi.py +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/schemas/base_schema.json +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/schemas/openapi_schema.json +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/schemas/roles.json +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/schemas/roles_schema.json +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter.egg-info/SOURCES.txt +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter.egg-info/dependency_links.txt +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter.egg-info/entry_points.txt +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter.egg-info/not-zip-safe +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter.egg-info/requires.txt +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter.egg-info/top_level.txt +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/setup.cfg +0 -0
- {mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mcp-proxy-adapter
|
3
|
-
Version: 6.6.
|
3
|
+
Version: 6.6.9
|
4
4
|
Summary: Powerful JSON-RPC microservices framework with built-in security, authentication, and proxy registration
|
5
5
|
Home-page: https://github.com/maverikod/mcp-proxy-adapter
|
6
6
|
Author: Vasiliy Zdanovskiy
|
@@ -41,6 +41,81 @@ from mcp_proxy_adapter.commands.command_registry import registry
|
|
41
41
|
from mcp_proxy_adapter.custom_openapi import custom_openapi_with_fallback
|
42
42
|
|
43
43
|
|
44
|
+
def _determine_registration_url(config: Dict[str, Any]) -> str:
|
45
|
+
"""
|
46
|
+
Determine the registration URL for proxy registration.
|
47
|
+
|
48
|
+
Logic:
|
49
|
+
1. Protocol: registration.protocol > server.protocol > fallback to http
|
50
|
+
2. Host: public_host > hostname (if server.host is 0.0.0.0/127.0.0.1) > server.host
|
51
|
+
3. Port: public_port > server.port
|
52
|
+
|
53
|
+
Args:
|
54
|
+
config: Application configuration
|
55
|
+
|
56
|
+
Returns:
|
57
|
+
Complete registration URL
|
58
|
+
"""
|
59
|
+
import os
|
60
|
+
import socket
|
61
|
+
|
62
|
+
# Get server configuration
|
63
|
+
server_config = config.get("server", {})
|
64
|
+
server_host = server_config.get("host", "0.0.0.0")
|
65
|
+
server_port = server_config.get("port", 8000)
|
66
|
+
server_protocol = server_config.get("protocol", "http")
|
67
|
+
|
68
|
+
# Get registration configuration
|
69
|
+
reg_cfg = config.get("registration", config.get("proxy_registration", {}))
|
70
|
+
public_host = reg_cfg.get("public_host")
|
71
|
+
public_port = reg_cfg.get("public_port")
|
72
|
+
registration_protocol = reg_cfg.get("protocol")
|
73
|
+
|
74
|
+
# Determine protocol
|
75
|
+
if registration_protocol:
|
76
|
+
# Use protocol from registration configuration
|
77
|
+
# Convert mtls to https for URL construction (mTLS is still HTTPS)
|
78
|
+
protocol = "https" if registration_protocol == "mtls" else registration_protocol
|
79
|
+
logger.info(f"🔍 Using registration.protocol: {registration_protocol} -> {protocol}")
|
80
|
+
else:
|
81
|
+
# Fallback to server protocol
|
82
|
+
verify_client = config.get("transport", {}).get("verify_client", False)
|
83
|
+
ssl_enabled = server_protocol in ["https", "mtls"] or verify_client
|
84
|
+
protocol = "https" if ssl_enabled else "http"
|
85
|
+
logger.info(f"⚠️ Fallback to server.protocol: {server_protocol} -> {protocol} (verify_client={verify_client})")
|
86
|
+
|
87
|
+
# Determine host
|
88
|
+
if not public_host:
|
89
|
+
if server_host in ("0.0.0.0", "127.0.0.1"):
|
90
|
+
# Try to get hostname, fallback to docker host addr
|
91
|
+
try:
|
92
|
+
hostname = socket.gethostname()
|
93
|
+
# Use hostname if it's not localhost
|
94
|
+
if hostname and hostname not in ("localhost", "127.0.0.1"):
|
95
|
+
resolved_host = hostname
|
96
|
+
else:
|
97
|
+
resolved_host = os.getenv("DOCKER_HOST_ADDR", "172.17.0.1")
|
98
|
+
except Exception:
|
99
|
+
resolved_host = os.getenv("DOCKER_HOST_ADDR", "172.17.0.1")
|
100
|
+
else:
|
101
|
+
resolved_host = server_host
|
102
|
+
else:
|
103
|
+
resolved_host = public_host
|
104
|
+
|
105
|
+
# Determine port
|
106
|
+
resolved_port = public_port or server_port
|
107
|
+
|
108
|
+
# Build URL
|
109
|
+
server_url = f"{protocol}://{resolved_host}:{resolved_port}"
|
110
|
+
|
111
|
+
logger.info(
|
112
|
+
"🔍 Registration URL selection: server_host=%s, server_port=%s, public_host=%s, public_port=%s, protocol=%s, resolved_host=%s, resolved_port=%s, server_url=%s",
|
113
|
+
server_host, server_port, public_host, public_port, protocol, resolved_host, resolved_port, server_url
|
114
|
+
)
|
115
|
+
|
116
|
+
return server_url
|
117
|
+
|
118
|
+
|
44
119
|
def create_lifespan(config_path: Optional[str] = None):
|
45
120
|
"""
|
46
121
|
Create lifespan manager for the FastAPI application.
|
@@ -81,33 +156,8 @@ def create_lifespan(config_path: Optional[str] = None):
|
|
81
156
|
if not server_port:
|
82
157
|
raise ValueError("server.port is required")
|
83
158
|
|
84
|
-
|
85
|
-
|
86
|
-
public_port = reg_cfg.get("public_port")
|
87
|
-
|
88
|
-
# Check SSL configuration from new structure
|
89
|
-
# Priority: registration.protocol > server.protocol > fallback to http
|
90
|
-
reg_cfg = config.get("registration", {})
|
91
|
-
registration_protocol = reg_cfg.get("protocol")
|
92
|
-
server_protocol = config.get("server.protocol", "http")
|
93
|
-
|
94
|
-
if registration_protocol:
|
95
|
-
# Use protocol from registration configuration
|
96
|
-
# Convert mtls to https for URL construction (mTLS is still HTTPS)
|
97
|
-
protocol = "https" if registration_protocol == "mtls" else registration_protocol
|
98
|
-
logger.info(f"🔍 Using registration.protocol: {registration_protocol} -> {protocol}")
|
99
|
-
else:
|
100
|
-
# Fallback to server protocol
|
101
|
-
verify_client = config.get("transport.verify_client", False)
|
102
|
-
ssl_enabled = server_protocol in ["https", "mtls"] or verify_client
|
103
|
-
protocol = "https" if ssl_enabled else "http"
|
104
|
-
logger.info(f"⚠️ Fallback to server.protocol: {server_protocol} -> {protocol} (verify_client={verify_client})")
|
105
|
-
|
106
|
-
import os
|
107
|
-
docker_host_addr = os.getenv("DOCKER_HOST_ADDR", "172.17.0.1")
|
108
|
-
target_host = public_host or (docker_host_addr if server_host == "0.0.0.0" else server_host)
|
109
|
-
target_port = public_port or server_port
|
110
|
-
early_server_url = f"{protocol}://{target_host}:{target_port}"
|
159
|
+
# Determine registration URL using unified logic
|
160
|
+
early_server_url = _determine_registration_url(config)
|
111
161
|
try:
|
112
162
|
from mcp_proxy_adapter.core.proxy_registration import (
|
113
163
|
proxy_registration_manager,
|
@@ -142,57 +192,8 @@ def create_lifespan(config_path: Optional[str] = None):
|
|
142
192
|
server_host = server_config.get("host", "0.0.0.0")
|
143
193
|
server_port = server_config.get("port", 8000)
|
144
194
|
|
145
|
-
|
146
|
-
|
147
|
-
public_port = reg_cfg.get("public_port")
|
148
|
-
|
149
|
-
# Determine protocol using the new configuration structure
|
150
|
-
# Priority: registration.protocol > server.protocol > fallback to http
|
151
|
-
reg_cfg = final_config.get("registration", final_config.get("proxy_registration", {}))
|
152
|
-
registration_protocol = reg_cfg.get("protocol")
|
153
|
-
server_protocol = final_config.get("server", {}).get("protocol", "http")
|
154
|
-
|
155
|
-
if registration_protocol:
|
156
|
-
# Use protocol from registration configuration
|
157
|
-
# Convert mtls to https for URL construction (mTLS is still HTTPS)
|
158
|
-
protocol = "https" if registration_protocol == "mtls" else registration_protocol
|
159
|
-
logger.info(f"🔍 Using registration.protocol: {registration_protocol} -> {protocol}")
|
160
|
-
else:
|
161
|
-
# Fallback to server protocol
|
162
|
-
verify_client_cfg = final_config.get("transport", {}).get("verify_client", False)
|
163
|
-
ssl_enabled_final = server_protocol in ["https", "mtls"] or verify_client_cfg
|
164
|
-
protocol = "https" if ssl_enabled_final else "http"
|
165
|
-
logger.info(f"⚠️ Fallback to server.protocol: {server_protocol} -> {protocol} (verify_client={verify_client_cfg})")
|
166
|
-
|
167
|
-
import os
|
168
|
-
docker_host_addr = os.getenv("DOCKER_HOST_ADDR", "172.17.0.1")
|
169
|
-
resolved_host = public_host or (docker_host_addr if server_host == "0.0.0.0" else server_host)
|
170
|
-
resolved_port = public_port or server_port
|
171
|
-
server_url = f"{protocol}://{resolved_host}:{resolved_port}"
|
172
|
-
|
173
|
-
logger.info(
|
174
|
-
"🔍 Registration URL selection: server_host=%s, server_port=%s, public_host=%s, public_port=%s, protocol=%s",
|
175
|
-
server_host,
|
176
|
-
server_port,
|
177
|
-
public_host,
|
178
|
-
public_port,
|
179
|
-
protocol,
|
180
|
-
)
|
181
|
-
try:
|
182
|
-
print(
|
183
|
-
"🔍 Registration URL selection (print):",
|
184
|
-
{
|
185
|
-
"server_host": server_host,
|
186
|
-
"server_port": server_port,
|
187
|
-
"public_host": public_host,
|
188
|
-
"public_port": public_port,
|
189
|
-
"protocol": protocol,
|
190
|
-
},
|
191
|
-
)
|
192
|
-
except Exception:
|
193
|
-
pass
|
194
|
-
|
195
|
-
logger.debug("Registration server_url resolved to: %s", server_url)
|
195
|
+
# Determine registration URL using unified logic
|
196
|
+
server_url = _determine_registration_url(final_config)
|
196
197
|
try:
|
197
198
|
print("🔍 Registration server_url resolved to (print):", server_url)
|
198
199
|
except Exception:
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/config_builder.py
RENAMED
@@ -83,13 +83,13 @@ class ConfigBuilder:
|
|
83
83
|
"registration": {
|
84
84
|
"enabled": False,
|
85
85
|
"proxy_url": "http://localhost:3004",
|
86
|
-
"public_host": None,
|
87
|
-
"public_port": None,
|
88
|
-
"protocol": None,
|
86
|
+
"public_host": None, # Auto-determined from hostname or server.host
|
87
|
+
"public_port": None, # Auto-determined from server.port
|
88
|
+
"protocol": None, # Auto-determined from server.protocol
|
89
89
|
"server_id": "mcp_proxy_adapter",
|
90
90
|
"server_name": "MCP Proxy Adapter",
|
91
91
|
"description": "JSON-RPC API for interacting with MCP Proxy",
|
92
|
-
"version": "6.6.
|
92
|
+
"version": "6.6.9",
|
93
93
|
"heartbeat": {
|
94
94
|
"enabled": True,
|
95
95
|
"interval": 30,
|
@@ -172,9 +172,9 @@ class ConfigBuilder:
|
|
172
172
|
return self
|
173
173
|
|
174
174
|
def set_proxy_registration(self, enabled: bool = True, proxy_url: str = "http://localhost:3004",
|
175
|
-
|
176
|
-
|
177
|
-
|
175
|
+
public_host: Optional[str] = None, public_port: Optional[int] = None,
|
176
|
+
server_id: str = "mcp_proxy_adapter", server_name: str = "MCP Proxy Adapter",
|
177
|
+
description: str = "JSON-RPC API for interacting with MCP Proxy"):
|
178
178
|
"""Set proxy registration configuration."""
|
179
179
|
self.config["registration"]["enabled"] = enabled
|
180
180
|
self.config["registration"]["proxy_url"] = proxy_url
|
@@ -190,6 +190,35 @@ class ConfigBuilder:
|
|
190
190
|
|
191
191
|
return self
|
192
192
|
|
193
|
+
def enable_auto_registration(self, proxy_url: str = "http://localhost:3004",
|
194
|
+
server_id: str = "mcp_proxy_adapter",
|
195
|
+
server_name: str = "MCP Proxy Adapter",
|
196
|
+
description: str = "JSON-RPC API for interacting with MCP Proxy"):
|
197
|
+
"""
|
198
|
+
Enable automatic proxy registration with auto-determined parameters.
|
199
|
+
|
200
|
+
This method enables registration with automatic determination of:
|
201
|
+
- public_host: from hostname (if server.host is 0.0.0.0/127.0.0.1) or server.host
|
202
|
+
- public_port: from server.port
|
203
|
+
- protocol: from server.protocol
|
204
|
+
|
205
|
+
Args:
|
206
|
+
proxy_url: URL of the proxy server
|
207
|
+
server_id: Unique identifier for this server
|
208
|
+
server_name: Human-readable name for this server
|
209
|
+
description: Description of this server
|
210
|
+
"""
|
211
|
+
self.config["registration"]["enabled"] = True
|
212
|
+
self.config["registration"]["proxy_url"] = proxy_url
|
213
|
+
self.config["registration"]["public_host"] = None # Auto-determined
|
214
|
+
self.config["registration"]["public_port"] = None # Auto-determined
|
215
|
+
self.config["registration"]["protocol"] = None # Auto-determined
|
216
|
+
self.config["registration"]["server_id"] = server_id
|
217
|
+
self.config["registration"]["server_name"] = server_name
|
218
|
+
self.config["registration"]["description"] = description
|
219
|
+
|
220
|
+
return self
|
221
|
+
|
193
222
|
def build(self) -> Dict[str, Any]:
|
194
223
|
"""Build and return the configuration."""
|
195
224
|
return self.config.copy()
|
@@ -307,10 +336,41 @@ class ConfigFactory:
|
|
307
336
|
.set_server(port=port)
|
308
337
|
.set_proxy_registration(proxy_url=proxy_url)
|
309
338
|
.build())
|
339
|
+
|
340
|
+
@staticmethod
|
341
|
+
def create_http_with_auto_registration(port: int = 8009, proxy_url: str = "http://localhost:3004",
|
342
|
+
server_id: str = "mcp_proxy_adapter") -> Dict[str, Any]:
|
343
|
+
"""Create HTTP configuration with automatic proxy registration."""
|
344
|
+
return (ConfigBuilder()
|
345
|
+
.set_protocol(Protocol.HTTP)
|
346
|
+
.set_server(port=port)
|
347
|
+
.enable_auto_registration(proxy_url=proxy_url, server_id=server_id)
|
348
|
+
.build())
|
349
|
+
|
350
|
+
@staticmethod
|
351
|
+
def create_https_with_auto_registration(port: int = 8010, proxy_url: str = "https://localhost:3004",
|
352
|
+
server_id: str = "mcp_proxy_adapter") -> Dict[str, Any]:
|
353
|
+
"""Create HTTPS configuration with automatic proxy registration."""
|
354
|
+
return (ConfigBuilder()
|
355
|
+
.set_protocol(Protocol.HTTPS)
|
356
|
+
.set_server(port=port)
|
357
|
+
.enable_auto_registration(proxy_url=proxy_url, server_id=server_id)
|
358
|
+
.build())
|
359
|
+
|
360
|
+
@staticmethod
|
361
|
+
def create_mtls_with_auto_registration(port: int = 8011, proxy_url: str = "https://localhost:3004",
|
362
|
+
server_id: str = "mcp_proxy_adapter") -> Dict[str, Any]:
|
363
|
+
"""Create mTLS configuration with automatic proxy registration."""
|
364
|
+
return (ConfigBuilder()
|
365
|
+
.set_protocol(Protocol.MTLS)
|
366
|
+
.set_server(port=port)
|
367
|
+
.enable_auto_registration(proxy_url=proxy_url, server_id=server_id)
|
368
|
+
.build())
|
310
369
|
|
311
370
|
|
312
371
|
def create_config_from_flags(protocol: str, token: bool = False, roles: bool = False, port: int = 8000,
|
313
|
-
proxy_registration: bool = False, proxy_url: str = "http://localhost:3004"
|
372
|
+
proxy_registration: bool = False, proxy_url: str = "http://localhost:3004",
|
373
|
+
auto_registration: bool = False, server_id: str = "mcp_proxy_adapter") -> Dict[str, Any]:
|
314
374
|
"""
|
315
375
|
Create configuration from command line flags.
|
316
376
|
|
@@ -319,8 +379,10 @@ def create_config_from_flags(protocol: str, token: bool = False, roles: bool = F
|
|
319
379
|
token: Enable token authentication
|
320
380
|
roles: Enable role-based access control
|
321
381
|
port: Server port
|
322
|
-
proxy_registration: Enable proxy registration
|
382
|
+
proxy_registration: Enable proxy registration with manual settings
|
323
383
|
proxy_url: Proxy URL for registration
|
384
|
+
auto_registration: Enable automatic proxy registration (auto-determined parameters)
|
385
|
+
server_id: Server ID for registration
|
324
386
|
|
325
387
|
Returns:
|
326
388
|
Configuration dictionary
|
@@ -344,7 +406,11 @@ def create_config_from_flags(protocol: str, token: bool = False, roles: bool = F
|
|
344
406
|
builder.set_auth(AuthMethod.NONE)
|
345
407
|
|
346
408
|
# Enable proxy registration if requested
|
347
|
-
if
|
409
|
+
if auto_registration:
|
410
|
+
# Use automatic registration with auto-determined parameters
|
411
|
+
builder.enable_auto_registration(proxy_url=proxy_url, server_id=server_id)
|
412
|
+
elif proxy_registration:
|
413
|
+
# Use manual registration settings
|
348
414
|
builder.set_proxy_registration(proxy_url=proxy_url)
|
349
415
|
|
350
416
|
return builder.build()
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/generate_config.py
RENAMED
@@ -241,8 +241,11 @@ Examples:
|
|
241
241
|
# Generate mTLS configuration with roles
|
242
242
|
python generate_config.py --protocol mtls --roles
|
243
243
|
|
244
|
-
|
245
|
-
|
244
|
+
# Generate mTLS configuration with automatic proxy registration
|
245
|
+
python generate_config.py --protocol mtls --auto-registration --proxy-url https://mcp-proxy:3004
|
246
|
+
|
247
|
+
# Generate HTTP configuration with automatic proxy registration
|
248
|
+
python generate_config.py --protocol http --proxy-registration --proxy-url http://localhost:3004
|
246
249
|
"""
|
247
250
|
)
|
248
251
|
|
@@ -254,9 +257,11 @@ Examples:
|
|
254
257
|
parser.add_argument("--roles", action="store_true",
|
255
258
|
help="Enable role-based access control")
|
256
259
|
parser.add_argument("--proxy-registration", action="store_true",
|
257
|
-
help="Enable proxy registration")
|
260
|
+
help="Enable proxy registration with auto-determined parameters")
|
258
261
|
parser.add_argument("--proxy-url", default="http://localhost:3004",
|
259
262
|
help="Proxy URL for registration (default: http://localhost:3004)")
|
263
|
+
parser.add_argument("--auto-registration", action="store_true",
|
264
|
+
help="Enable automatic proxy registration (same as --proxy-registration)")
|
260
265
|
parser.add_argument("--all", action="store_true",
|
261
266
|
help="Generate all standard configurations")
|
262
267
|
parser.add_argument("--full-config", action="store_true",
|
@@ -308,18 +313,15 @@ Examples:
|
|
308
313
|
print(f"✅ Full configuration saved to: {config_file}")
|
309
314
|
elif args.protocol:
|
310
315
|
# Generate specific configuration
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
proxy_registration=args.proxy_registration,
|
321
|
-
proxy_url=args.proxy_url
|
322
|
-
)
|
316
|
+
config = create_config_from_flags(
|
317
|
+
protocol=args.protocol,
|
318
|
+
token=args.token,
|
319
|
+
roles=args.roles,
|
320
|
+
port=args.port,
|
321
|
+
proxy_registration=args.proxy_registration,
|
322
|
+
proxy_url=args.proxy_url,
|
323
|
+
auto_registration=args.auto_registration
|
324
|
+
)
|
323
325
|
|
324
326
|
if args.stdout:
|
325
327
|
# Output to stdout
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mcp-proxy-adapter
|
3
|
-
Version: 6.6.
|
3
|
+
Version: 6.6.9
|
4
4
|
Summary: Powerful JSON-RPC microservices framework with built-in security, authentication, and proxy registration
|
5
5
|
Home-page: https://github.com/maverikod/mcp-proxy-adapter
|
6
6
|
Author: Vasiliy Zdanovskiy
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "mcp-proxy-adapter"
|
7
|
-
version = "6.6.
|
7
|
+
version = "6.6.9"
|
8
8
|
description = "Powerful JSON-RPC microservices framework with built-in security, authentication, and proxy registration"
|
9
9
|
readme = "README.md"
|
10
10
|
license = {text = "MIT"}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/middleware/__init__.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/middleware/base.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/middleware/factory.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/middleware/logging.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/middleware/performance.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/api/tool_integration.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/builtin_commands.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/catalog_manager.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/command_registry.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/config_command.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/dependency_manager.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/echo_command.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/health_command.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/help_command.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/load_command.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/plugins_command.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/reload_command.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/role_test_command.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/security_command.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/settings_command.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/ssl_setup_command.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/commands/unload_command.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/auth_validator.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/certificate_utils.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/client_manager.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/client_security.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/config_converter.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/config_validator.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/protocol_manager.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/proxy_registration.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/security_adapter.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/security_factory.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/security_integration.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/server_adapter.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/transport_manager.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/core/unified_config_adapter.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/check_config.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/commands/__init__.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/config_cli.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/debug_role_chain.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/demo_client.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/run_example.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/run_proxy_server.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/test_config.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/test_examples.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/test_mcp_server.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/examples/universal_client.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/schemas/base_schema.json
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/schemas/openapi_schema.json
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter/schemas/roles_schema.json
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter.egg-info/dependency_links.txt
RENAMED
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter.egg-info/entry_points.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.6.8 → mcp_proxy_adapter-6.6.9}/mcp_proxy_adapter.egg-info/top_level.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|