mcp-proxy-adapter 6.4.7__tar.gz → 6.4.8__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.4.7 → mcp_proxy_adapter-6.4.8}/PKG-INFO +1 -1
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/examples/basic_framework/main.py +3 -2
- mcp_proxy_adapter-6.4.8/mcp_proxy_adapter/examples/examples/full_application/main.py +61 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/version.py +1 -1
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/pyproject.toml +1 -1
- mcp_proxy_adapter-6.4.7/mcp_proxy_adapter/examples/examples/full_application/main.py +0 -198
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/MANIFEST.in +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/README.md +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/__main__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/app.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/handlers.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/middleware/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/middleware/base.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/middleware/command_permission_middleware.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/middleware/error_handling.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/middleware/factory.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/middleware/logging.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/middleware/performance.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/middleware/protocol_middleware.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/middleware/transport_middleware.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/middleware/unified_security.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/middleware/user_info_middleware.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/schemas.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/tool_integration.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/tools.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/auth_validation_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/base.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/builtin_commands.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/catalog_manager.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/cert_monitor_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/certificate_management_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/command_registry.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/config_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/dependency_container.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/dependency_manager.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/echo_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/health_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/help_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/hooks.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/key_management_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/load_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/plugins_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/protocol_management_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/proxy_registration_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/reload_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/result.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/role_test_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/roles_management_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/security_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/settings_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/ssl_setup_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/token_management_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/transport_management_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/unload_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/config.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/app_factory.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/app_runner.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/auth_validator.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/certificate_utils.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/client.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/client_manager.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/client_security.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/config_converter.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/config_validator.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/crl_utils.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/errors.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/logging.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/mtls_asgi.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/mtls_asgi_app.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/protocol_manager.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/proxy_client.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/proxy_registration.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/role_utils.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/security_adapter.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/security_factory.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/security_integration.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/server_adapter.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/server_engine.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/settings.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/ssl_utils.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/transport_manager.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/unified_config_adapter.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/utils.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/custom_openapi.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/basic_framework/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/basic_framework/commands/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/basic_framework/hooks/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/basic_framework/main.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/basic_framework/roles.json +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/commands/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/create_certificates_simple.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/debug_request_state.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/debug_role_chain.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/demo_client.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/examples/basic_framework/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/examples/basic_framework/commands/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/examples/basic_framework/hooks/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/examples/full_application/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/examples/full_application/commands/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/examples/full_application/commands/custom_echo_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/examples/full_application/commands/dynamic_calculator_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/examples/full_application/hooks/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/examples/full_application/hooks/application_hooks.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/examples/full_application/hooks/builtin_command_hooks.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/examples/full_application/proxy_endpoints.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/full_application/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/full_application/commands/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/full_application/commands/custom_echo_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/full_application/commands/dynamic_calculator_command.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/full_application/hooks/__init__.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/full_application/hooks/application_hooks.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/full_application/hooks/builtin_command_hooks.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/full_application/main.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/full_application/proxy_endpoints.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/full_application/roles.json +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/generate_all_certificates.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/generate_certificates.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/generate_certificates_and_tokens.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/generate_comprehensive_config.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/generate_test_configs.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/proxy_registration_example.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/run_example.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/run_full_test_suite.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/run_proxy_server.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/run_security_tests.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/run_security_tests_fixed.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/scripts/config_generator.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/scripts/create_certificates_simple.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/scripts/generate_certificates_and_tokens.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/security_test_client.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/setup_test_environment.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/test_config.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/test_config_generator.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/test_examples.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/test_mcp_adapter.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/universal_client.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/main.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/openapi.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/schemas/base_schema.json +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/schemas/openapi_schema.json +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/utils/config_generator.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter.egg-info/SOURCES.txt +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter_issue_package/demonstrate_issue.py +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/requirements.txt +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/setup.cfg +0 -0
- {mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/setup.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mcp-proxy-adapter
|
3
|
-
Version: 6.4.
|
3
|
+
Version: 6.4.8
|
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
|
@@ -8,6 +8,7 @@ email: vasilyvz@gmail.com
|
|
8
8
|
"""
|
9
9
|
import sys
|
10
10
|
import argparse
|
11
|
+
import asyncio
|
11
12
|
from pathlib import Path
|
12
13
|
|
13
14
|
# Add the framework to the path
|
@@ -37,14 +38,14 @@ def main():
|
|
37
38
|
print(f"📋 Configuration: {args.config}")
|
38
39
|
print("=" * 50)
|
39
40
|
# Use the factory method to create and run the server
|
40
|
-
create_and_run_server(
|
41
|
+
asyncio.run(create_and_run_server(
|
41
42
|
config_path=args.config,
|
42
43
|
title="Basic Framework Example",
|
43
44
|
description="Basic MCP Proxy Adapter with minimal configuration",
|
44
45
|
version="1.0.0",
|
45
46
|
host=config_overrides.get("host", "0.0.0.0"),
|
46
47
|
log_level="debug" if config_overrides.get("debug", False) else "info",
|
47
|
-
)
|
48
|
+
))
|
48
49
|
|
49
50
|
|
50
51
|
if __name__ == "__main__":
|
@@ -0,0 +1,61 @@
|
|
1
|
+
#!/usr/bin/env python3
|
2
|
+
"""
|
3
|
+
Full Application Example
|
4
|
+
This is a complete application that demonstrates all features of MCP Proxy Adapter framework:
|
5
|
+
- Built-in commands
|
6
|
+
- Custom commands
|
7
|
+
- Dynamically loaded commands
|
8
|
+
- Built-in command hooks
|
9
|
+
- Application hooks
|
10
|
+
Author: Vasiliy Zdanovskiy
|
11
|
+
email: vasilyvz@gmail.com
|
12
|
+
"""
|
13
|
+
import sys
|
14
|
+
import argparse
|
15
|
+
import asyncio
|
16
|
+
import logging
|
17
|
+
from pathlib import Path
|
18
|
+
|
19
|
+
# Add the framework to the path
|
20
|
+
sys.path.insert(0, str(Path(__file__).parent.parent.parent))
|
21
|
+
from mcp_proxy_adapter.core.app_factory import create_and_run_server
|
22
|
+
|
23
|
+
|
24
|
+
def main():
|
25
|
+
"""Main entry point for the full application example."""
|
26
|
+
parser = argparse.ArgumentParser(description="Full Application Example")
|
27
|
+
parser.add_argument(
|
28
|
+
"--config", "-c", required=True, help="Path to configuration file"
|
29
|
+
)
|
30
|
+
parser.add_argument("--host", help="Server host")
|
31
|
+
parser.add_argument("--port", type=int, help="Server port")
|
32
|
+
parser.add_argument("--debug", action="store_true", help="Enable debug mode")
|
33
|
+
args = parser.parse_args()
|
34
|
+
|
35
|
+
# Override configuration if specified
|
36
|
+
config_overrides = {}
|
37
|
+
if args.host:
|
38
|
+
config_overrides["host"] = args.host
|
39
|
+
if args.port:
|
40
|
+
config_overrides["port"] = args.port
|
41
|
+
if args.debug:
|
42
|
+
config_overrides["debug"] = True
|
43
|
+
|
44
|
+
print(f"🚀 Starting Full Application Example")
|
45
|
+
print(f"📋 Configuration: {args.config}")
|
46
|
+
print(f"🔧 Features: Built-in commands, Custom commands, Dynamic commands, Hooks, Proxy endpoints")
|
47
|
+
print("=" * 60)
|
48
|
+
|
49
|
+
# Use the factory method to create and run the server
|
50
|
+
asyncio.run(create_and_run_server(
|
51
|
+
config_path=args.config,
|
52
|
+
title="Full Application Example",
|
53
|
+
description="Complete MCP Proxy Adapter with all features",
|
54
|
+
version="1.0.0",
|
55
|
+
host=config_overrides.get("host", "0.0.0.0"),
|
56
|
+
log_level="debug" if config_overrides.get("debug", False) else "info",
|
57
|
+
))
|
58
|
+
|
59
|
+
|
60
|
+
if __name__ == "__main__":
|
61
|
+
main()
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "mcp-proxy-adapter"
|
7
|
-
version = "6.4.
|
7
|
+
version = "6.4.8"
|
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"}
|
@@ -1,198 +0,0 @@
|
|
1
|
-
#!/usr/bin/env python3
|
2
|
-
"""
|
3
|
-
Full Application Example
|
4
|
-
This is a complete application that demonstrates all features of MCP Proxy Adapter framework:
|
5
|
-
- Built-in commands
|
6
|
-
- Custom commands
|
7
|
-
- Dynamically loaded commands
|
8
|
-
- Built-in command hooks
|
9
|
-
- Application hooks
|
10
|
-
Author: Vasiliy Zdanovskiy
|
11
|
-
email: vasilyvz@gmail.com
|
12
|
-
"""
|
13
|
-
import sys
|
14
|
-
import argparse
|
15
|
-
import logging
|
16
|
-
from pathlib import Path
|
17
|
-
|
18
|
-
# Add the framework to the path
|
19
|
-
sys.path.insert(0, str(Path(__file__).parent.parent.parent))
|
20
|
-
from mcp_proxy_adapter.core.app_factory import create_and_run_server
|
21
|
-
from mcp_proxy_adapter.api.app import create_app
|
22
|
-
from mcp_proxy_adapter.config import Config
|
23
|
-
from mcp_proxy_adapter.commands.command_registry import CommandRegistry
|
24
|
-
|
25
|
-
|
26
|
-
class FullApplication:
|
27
|
-
"""Full application example with all framework features."""
|
28
|
-
|
29
|
-
def __init__(self, config_path: str):
|
30
|
-
self.config_path = config_path
|
31
|
-
self.config = Config(config_path)
|
32
|
-
self.app = None
|
33
|
-
self.command_registry = None
|
34
|
-
# Setup logging
|
35
|
-
logging.basicConfig(level=logging.INFO)
|
36
|
-
self.logger = logging.getLogger(__name__)
|
37
|
-
|
38
|
-
def setup_hooks(self):
|
39
|
-
"""Setup application hooks."""
|
40
|
-
try:
|
41
|
-
# Import hooks
|
42
|
-
from hooks.application_hooks import ApplicationHooks
|
43
|
-
from hooks.builtin_command_hooks import BuiltinCommandHooks
|
44
|
-
|
45
|
-
# Register application hooks
|
46
|
-
self.logger.info("🔧 Setting up application hooks...")
|
47
|
-
# Register built-in command hooks
|
48
|
-
self.logger.info("🔧 Setting up built-in command hooks...")
|
49
|
-
# Note: In a real implementation, these hooks would be registered
|
50
|
-
# with the framework's hook system
|
51
|
-
self.logger.info("✅ Hooks setup completed")
|
52
|
-
except ImportError as e:
|
53
|
-
self.logger.warning(f"⚠️ Could not import hooks: {e}")
|
54
|
-
|
55
|
-
def setup_custom_commands(self):
|
56
|
-
"""Setup custom commands."""
|
57
|
-
try:
|
58
|
-
self.logger.info("🔧 Setting up custom commands...")
|
59
|
-
# Import custom commands
|
60
|
-
from commands.custom_echo_command import CustomEchoCommand
|
61
|
-
from commands.dynamic_calculator_command import DynamicCalculatorCommand
|
62
|
-
|
63
|
-
# Register custom commands
|
64
|
-
# Note: In a real implementation, these would be registered
|
65
|
-
# with the framework's command registry
|
66
|
-
self.logger.info("✅ Custom commands setup completed")
|
67
|
-
except ImportError as e:
|
68
|
-
self.logger.warning(f"⚠️ Could not import custom commands: {e}")
|
69
|
-
|
70
|
-
def setup_proxy_endpoints(self):
|
71
|
-
"""Setup proxy registration endpoints."""
|
72
|
-
try:
|
73
|
-
self.logger.info("🔧 Setting up proxy endpoints...")
|
74
|
-
# Import proxy endpoints
|
75
|
-
from proxy_endpoints import router as proxy_router
|
76
|
-
|
77
|
-
# Add proxy router to the application
|
78
|
-
self.app.include_router(proxy_router)
|
79
|
-
self.logger.info("✅ Proxy endpoints setup completed")
|
80
|
-
except ImportError as e:
|
81
|
-
self.logger.warning(f"⚠️ Could not import proxy endpoints: {e}")
|
82
|
-
|
83
|
-
def create_application(self):
|
84
|
-
"""Create the FastAPI application."""
|
85
|
-
self.logger.info("🔧 Creating application...")
|
86
|
-
# Setup hooks and commands before creating app
|
87
|
-
self.setup_hooks()
|
88
|
-
self.setup_custom_commands()
|
89
|
-
# Create application with configuration
|
90
|
-
self.app = create_app(app_config=self.config)
|
91
|
-
# Setup proxy endpoints after app creation
|
92
|
-
self.setup_proxy_endpoints()
|
93
|
-
self.logger.info("✅ Application created successfully")
|
94
|
-
|
95
|
-
def run(self, host: str = None, port: int = None, debug: bool = False):
|
96
|
-
"""Run the application using the factory method."""
|
97
|
-
# Override configuration if specified
|
98
|
-
config_overrides = {}
|
99
|
-
if host:
|
100
|
-
config_overrides["host"] = host
|
101
|
-
if port:
|
102
|
-
config_overrides["port"] = port
|
103
|
-
if debug:
|
104
|
-
config_overrides["debug"] = True
|
105
|
-
print(f"🚀 Starting Full Application Example")
|
106
|
-
print(f"📋 Configuration: {self.config_path}")
|
107
|
-
print(
|
108
|
-
f"🔧 Features: Built-in commands, Custom commands, Dynamic commands, Hooks, Proxy endpoints"
|
109
|
-
)
|
110
|
-
print("=" * 60)
|
111
|
-
# Create application with configuration
|
112
|
-
self.create_application()
|
113
|
-
# Get server configuration
|
114
|
-
server_host = self.config.get("server.host", "0.0.0.0")
|
115
|
-
server_port = self.config.get("server.port", 8000)
|
116
|
-
server_debug = self.config.get("server.debug", False)
|
117
|
-
# Get SSL configuration
|
118
|
-
ssl_enabled = self.config.get("ssl.enabled", False)
|
119
|
-
ssl_cert_file = self.config.get("ssl.cert_file")
|
120
|
-
ssl_key_file = self.config.get("ssl.key_file")
|
121
|
-
ssl_ca_cert = self.config.get("ssl.ca_cert")
|
122
|
-
verify_client = self.config.get("ssl.verify_client", False)
|
123
|
-
print(f"🌐 Server: {server_host}:{server_port}")
|
124
|
-
print(f"🔧 Debug: {server_debug}")
|
125
|
-
if ssl_enabled:
|
126
|
-
print(f"🔐 SSL: Enabled")
|
127
|
-
print(f" Certificate: {ssl_cert_file}")
|
128
|
-
print(f" Key: {ssl_key_file}")
|
129
|
-
if ssl_ca_cert:
|
130
|
-
print(f" CA: {ssl_ca_cert}")
|
131
|
-
print(f" Client verification: {verify_client}")
|
132
|
-
print("=" * 60)
|
133
|
-
# Use hypercorn directly to run the application with proxy endpoints
|
134
|
-
try:
|
135
|
-
import hypercorn.asyncio
|
136
|
-
import hypercorn.config
|
137
|
-
import asyncio
|
138
|
-
|
139
|
-
# Configure hypercorn
|
140
|
-
config_hypercorn = hypercorn.config.Config()
|
141
|
-
config_hypercorn.bind = [f"{server_host}:{server_port}"]
|
142
|
-
config_hypercorn.loglevel = "debug" if server_debug else "info"
|
143
|
-
if ssl_enabled and ssl_cert_file and ssl_key_file:
|
144
|
-
config_hypercorn.certfile = ssl_cert_file
|
145
|
-
config_hypercorn.keyfile = ssl_key_file
|
146
|
-
if ssl_ca_cert:
|
147
|
-
config_hypercorn.ca_certs = ssl_ca_cert
|
148
|
-
if verify_client:
|
149
|
-
import ssl
|
150
|
-
|
151
|
-
config_hypercorn.verify_mode = ssl.CERT_REQUIRED
|
152
|
-
print(f"🔐 Starting HTTPS server with hypercorn...")
|
153
|
-
else:
|
154
|
-
print(f"🌐 Starting HTTP server with hypercorn...")
|
155
|
-
# Run the server
|
156
|
-
asyncio.run(hypercorn.asyncio.serve(self.app, config_hypercorn))
|
157
|
-
except ImportError:
|
158
|
-
print("❌ hypercorn not installed. Installing...")
|
159
|
-
import subprocess
|
160
|
-
|
161
|
-
subprocess.run([sys.executable, "-m", "pip", "install", "hypercorn"])
|
162
|
-
print("✅ hypercorn installed. Please restart the application.")
|
163
|
-
return
|
164
|
-
|
165
|
-
|
166
|
-
def main():
|
167
|
-
"""Main entry point for the full application example."""
|
168
|
-
parser = argparse.ArgumentParser(description="Full Application Example")
|
169
|
-
parser.add_argument(
|
170
|
-
"--config", "-c", required=True, help="Path to configuration file"
|
171
|
-
)
|
172
|
-
parser.add_argument("--host", help="Server host")
|
173
|
-
parser.add_argument("--port", type=int, help="Server port")
|
174
|
-
parser.add_argument("--debug", action="store_true", help="Enable debug mode")
|
175
|
-
args = parser.parse_args()
|
176
|
-
# Create and run application
|
177
|
-
app = FullApplication(args.config)
|
178
|
-
app.run(host=args.host, port=args.port, debug=args.debug)
|
179
|
-
|
180
|
-
|
181
|
-
# Create global app instance for import
|
182
|
-
app = None
|
183
|
-
|
184
|
-
|
185
|
-
def get_app():
|
186
|
-
"""Get the FastAPI application instance."""
|
187
|
-
global app
|
188
|
-
if app is None:
|
189
|
-
# Create a default configuration for import
|
190
|
-
config = Config("configs/mtls_with_roles.json") # Default config
|
191
|
-
app_instance = FullApplication("configs/mtls_with_roles.json")
|
192
|
-
app_instance.create_application()
|
193
|
-
app = app_instance.app
|
194
|
-
return app
|
195
|
-
|
196
|
-
|
197
|
-
if __name__ == "__main__":
|
198
|
-
main()
|
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.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/middleware/__init__.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/middleware/base.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/middleware/factory.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/api/middleware/logging.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/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.4.7 → mcp_proxy_adapter-6.4.8}/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.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/builtin_commands.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/catalog_manager.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/command_registry.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/config_command.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/dependency_manager.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/echo_command.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/health_command.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/help_command.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/load_command.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/plugins_command.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/reload_command.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/role_test_command.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/security_command.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/settings_command.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/commands/ssl_setup_command.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/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.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/auth_validator.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/certificate_utils.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/client_manager.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/client_security.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/config_converter.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/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
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/protocol_manager.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/proxy_registration.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/security_adapter.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/security_factory.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/security_integration.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/server_adapter.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/core/transport_manager.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/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
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/commands/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/debug_role_chain.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/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
|
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
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/run_example.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/run_proxy_server.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/run_security_tests.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.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/test_config.py
RENAMED
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/test_examples.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/test_mcp_adapter.py
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/examples/universal_client.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/schemas/base_schema.json
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/schemas/openapi_schema.json
RENAMED
File without changes
|
{mcp_proxy_adapter-6.4.7 → mcp_proxy_adapter-6.4.8}/mcp_proxy_adapter/utils/config_generator.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|