mcp-proxy-adapter 6.3.13__py3-none-any.whl → 6.3.14__py3-none-any.whl
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/examples/setup_test_environment.py +24 -30
- mcp_proxy_adapter/version.py +1 -1
- {mcp_proxy_adapter-6.3.13.dist-info → mcp_proxy_adapter-6.3.14.dist-info}/METADATA +1 -1
- {mcp_proxy_adapter-6.3.13.dist-info → mcp_proxy_adapter-6.3.14.dist-info}/RECORD +8 -8
- {mcp_proxy_adapter-6.3.13.dist-info → mcp_proxy_adapter-6.3.14.dist-info}/WHEEL +0 -0
- {mcp_proxy_adapter-6.3.13.dist-info → mcp_proxy_adapter-6.3.14.dist-info}/entry_points.txt +0 -0
- {mcp_proxy_adapter-6.3.13.dist-info → mcp_proxy_adapter-6.3.14.dist-info}/licenses/LICENSE +0 -0
- {mcp_proxy_adapter-6.3.13.dist-info → mcp_proxy_adapter-6.3.14.dist-info}/top_level.txt +0 -0
@@ -627,36 +627,32 @@ def generate_enhanced_configurations(output_dir: Path) -> None:
|
|
627
627
|
"logging": {"level": "DEBUG"},
|
628
628
|
},
|
629
629
|
"production_https.json": {
|
630
|
+
"uuid": "550e8400-e29b-41d4-a716-446655440001",
|
630
631
|
"server": {"host": "0.0.0.0", "port": 8443},
|
631
632
|
"protocols": {"enabled": True, "allowed_protocols": ["https"]},
|
632
|
-
"
|
633
|
-
"
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
"verify_client": False,
|
640
|
-
"min_tls_version": "TLSv1.2",
|
641
|
-
}
|
633
|
+
"ssl": {
|
634
|
+
"enabled": True,
|
635
|
+
"cert_file": "mcp_proxy_adapter/examples/basic_framework/certs/server_cert.pem",
|
636
|
+
"key_file": "mcp_proxy_adapter/examples/basic_framework/certs/server_key.pem",
|
637
|
+
"ca_cert_file": "mcp_proxy_adapter/examples/basic_framework/certs/ca_cert.pem",
|
638
|
+
"verify_client": False,
|
639
|
+
"min_tls_version": "TLSv1.2",
|
642
640
|
},
|
643
641
|
"logging": {"level": "INFO"},
|
644
642
|
},
|
645
643
|
"mtls_with_roles.json": {
|
644
|
+
"uuid": "550e8400-e29b-41d4-a716-446655440000",
|
646
645
|
"server": {"host": "0.0.0.0", "port": 8443},
|
647
646
|
"protocols": {"enabled": True, "allowed_protocols": ["https", "mtls"]},
|
647
|
+
"ssl": {
|
648
|
+
"enabled": True,
|
649
|
+
"cert_file": "mcp_proxy_adapter/examples/basic_framework/certs/server_cert.pem",
|
650
|
+
"key_file": "mcp_proxy_adapter/examples/basic_framework/certs/server_key.pem",
|
651
|
+
"ca_cert_file": "mcp_proxy_adapter/examples/basic_framework/certs/ca_cert.pem",
|
652
|
+
"verify_client": True,
|
653
|
+
"min_tls_version": "TLSv1.2",
|
654
|
+
},
|
648
655
|
"security": {
|
649
|
-
"ssl": {
|
650
|
-
"enabled": True,
|
651
|
-
"server_cert_file": "certs/server_cert.pem",
|
652
|
-
"server_key_file": "keys/server_key.pem",
|
653
|
-
"ca_cert_file": "certs/ca_cert.pem",
|
654
|
-
"client_cert_file": "certs/client_cert.pem",
|
655
|
-
"client_key_file": "keys/client_key.pem",
|
656
|
-
"verify_server": True,
|
657
|
-
"verify_client": True,
|
658
|
-
"min_tls_version": "TLSv1.2",
|
659
|
-
},
|
660
656
|
"auth": {
|
661
657
|
"enabled": True,
|
662
658
|
"token_required": False,
|
@@ -684,17 +680,15 @@ def generate_enhanced_configurations(output_dir: Path) -> None:
|
|
684
680
|
"logging": {"level": "INFO"},
|
685
681
|
},
|
686
682
|
"https_simple.json": {
|
683
|
+
"uuid": "550e8400-e29b-41d4-a716-446655440002",
|
687
684
|
"server": {"host": "0.0.0.0", "port": 8443},
|
688
685
|
"protocols": {"enabled": True, "allowed_protocols": ["https"]},
|
689
|
-
"
|
690
|
-
"
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
"verify_client": False,
|
696
|
-
"min_tls_version": "TLSv1.2",
|
697
|
-
}
|
686
|
+
"ssl": {
|
687
|
+
"enabled": True,
|
688
|
+
"cert_file": "mcp_proxy_adapter/examples/basic_framework/certs/server_cert.pem",
|
689
|
+
"key_file": "mcp_proxy_adapter/examples/basic_framework/certs/server_key.pem",
|
690
|
+
"verify_client": False,
|
691
|
+
"min_tls_version": "TLSv1.2",
|
698
692
|
},
|
699
693
|
"logging": {"level": "INFO"},
|
700
694
|
},
|
mcp_proxy_adapter/version.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: mcp-proxy-adapter
|
3
|
-
Version: 6.3.
|
3
|
+
Version: 6.3.14
|
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 @@ mcp_proxy_adapter/config.py,sha256=-7iVS0mUWWKNeao7nqTAFlUD6FcMwRlDkchN7OwYsr0,2
|
|
4
4
|
mcp_proxy_adapter/custom_openapi.py,sha256=yLle4CntYK9wpivgn9NflZyJhy-YNrmWjJzt0ai5nP0,14672
|
5
5
|
mcp_proxy_adapter/main.py,sha256=qDkQTXnCvf8u0I3b8PRrguOoVdjd8YRr90ZooOqeOto,3401
|
6
6
|
mcp_proxy_adapter/openapi.py,sha256=2UZOI09ZDRJuBYBjKbMyb2U4uASszoCMD5o_4ktRpvg,13480
|
7
|
-
mcp_proxy_adapter/version.py,sha256=
|
7
|
+
mcp_proxy_adapter/version.py,sha256=MVfIeHEccRPPVwIvZE06OOoj8ARRyWOlAwfPcn9D8gY,75
|
8
8
|
mcp_proxy_adapter/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
mcp_proxy_adapter/api/app.py,sha256=22NIDGo6pGkOZnvBWeKv_-RIRye4YaYkIskVGIsCCMs,28600
|
10
10
|
mcp_proxy_adapter/api/handlers.py,sha256=iyFGoEuUS1wxbV1ELA0zmaxIyQR7j4zw-4MrD-uIO6E,8294
|
@@ -97,7 +97,7 @@ mcp_proxy_adapter/examples/run_proxy_server.py,sha256=SBLSSY2F_VEBQD3MsCE_Pa9xFE
|
|
97
97
|
mcp_proxy_adapter/examples/run_security_tests.py,sha256=0vjaUdWC-rLyviQuNxM3PtfiU9TzSRuxGxWMehrFA_w,23311
|
98
98
|
mcp_proxy_adapter/examples/run_security_tests_fixed.py,sha256=2BKMT0_-FhmcZA73hdQOt2XR7Cgb9Sq8qBI88BkwAAA,10934
|
99
99
|
mcp_proxy_adapter/examples/security_test_client.py,sha256=K5gEVat1SJS2pBVxqLl5c9-uiiG12k8UT3ULQDXZ2Uc,35713
|
100
|
-
mcp_proxy_adapter/examples/setup_test_environment.py,sha256=
|
100
|
+
mcp_proxy_adapter/examples/setup_test_environment.py,sha256=FiBC52GfNFzv_U2RK3GnhNLLZeo5UdUNWDaIaG5sZ68,37198
|
101
101
|
mcp_proxy_adapter/examples/setup_test_environment_old.py,sha256=qV7IT8lMObcaPeNrFXI7CkuvJnbJsLIVaRn7fTFXjJ0,11631
|
102
102
|
mcp_proxy_adapter/examples/test_config.py,sha256=ekEoUZe9q484vU_0IxOVhQdNMVJXG3IpmQpP--VmuDI,6491
|
103
103
|
mcp_proxy_adapter/examples/test_config_generator.py,sha256=PBXk1V_awJ-iBlbE66Pme5sQwu6CJDxkmqgm8uPtM58,4091
|
@@ -136,10 +136,10 @@ mcp_proxy_adapter/examples/scripts/generate_certificates_and_tokens.py,sha256=hU
|
|
136
136
|
mcp_proxy_adapter/schemas/base_schema.json,sha256=v9G9cGMd4dRhCZsOQ_FMqOi5VFyVbI6Cf3fyIvOT9dc,2881
|
137
137
|
mcp_proxy_adapter/schemas/openapi_schema.json,sha256=C3yLkwmDsvnLW9B5gnKKdBGl4zxkeU-rEmjTrNVsQU0,8405
|
138
138
|
mcp_proxy_adapter/utils/config_generator.py,sha256=UXxuxxAyKTesAS3DOofQ26e20v771inA7EfBV8PZD1c,47543
|
139
|
-
mcp_proxy_adapter-6.3.
|
139
|
+
mcp_proxy_adapter-6.3.14.dist-info/licenses/LICENSE,sha256=6KdtUcTwmTRbJrAmYjVn7e6S-V42ubeDJ-AiVEzZ510,1075
|
140
140
|
mcp_proxy_adapter_issue_package/demonstrate_issue.py,sha256=O54fwWQvUAjEGiHhQGm1JLnARkhVCwAqjBk_89HyRbY,7894
|
141
|
-
mcp_proxy_adapter-6.3.
|
142
|
-
mcp_proxy_adapter-6.3.
|
143
|
-
mcp_proxy_adapter-6.3.
|
144
|
-
mcp_proxy_adapter-6.3.
|
145
|
-
mcp_proxy_adapter-6.3.
|
141
|
+
mcp_proxy_adapter-6.3.14.dist-info/METADATA,sha256=rLsXqMhDpbDRKpHcUitRcvI0bZTeD9MaBFdZJap0vQs,22348
|
142
|
+
mcp_proxy_adapter-6.3.14.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
143
|
+
mcp_proxy_adapter-6.3.14.dist-info/entry_points.txt,sha256=J3eV6ID0lt_VSp4lIdIgBFTqLCThgObNNxRCbyfiMHw,70
|
144
|
+
mcp_proxy_adapter-6.3.14.dist-info/top_level.txt,sha256=CHk-Mc-AxjO-tRheegA2qLiQnU4vZRnxuTF81So6SAc,50
|
145
|
+
mcp_proxy_adapter-6.3.14.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|