mcp-proxy-adapter 6.2.14__py3-none-any.whl → 6.2.16__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/__main__.py +1 -1
- mcp_proxy_adapter/examples/__init__.py +1 -1
- mcp_proxy_adapter/examples/generate_test_configs.py +10 -10
- mcp_proxy_adapter/examples/run_security_tests.py +4 -4
- mcp_proxy_adapter/version.py +1 -1
- {mcp_proxy_adapter-6.2.14.dist-info → mcp_proxy_adapter-6.2.16.dist-info}/METADATA +1 -1
- {mcp_proxy_adapter-6.2.14.dist-info → mcp_proxy_adapter-6.2.16.dist-info}/RECORD +10 -10
- {mcp_proxy_adapter-6.2.14.dist-info → mcp_proxy_adapter-6.2.16.dist-info}/WHEEL +0 -0
- {mcp_proxy_adapter-6.2.14.dist-info → mcp_proxy_adapter-6.2.16.dist-info}/licenses/LICENSE +0 -0
- {mcp_proxy_adapter-6.2.14.dist-info → mcp_proxy_adapter-6.2.16.dist-info}/top_level.txt +0 -0
mcp_proxy_adapter/__main__.py
CHANGED
@@ -56,8 +56,8 @@ def generate_https_simple_config(port: int = 8002) -> Dict[str, Any]:
|
|
56
56
|
"server": {"host": "127.0.0.1", "port": port},
|
57
57
|
"ssl": {
|
58
58
|
"enabled": True,
|
59
|
-
"cert_file": "./certs/
|
60
|
-
"key_file": "./keys/
|
59
|
+
"cert_file": "./certs/localhost_server.crt",
|
60
|
+
"key_file": "./keys/localhost_server.key"
|
61
61
|
},
|
62
62
|
"security": {"enabled": False},
|
63
63
|
"registration": {
|
@@ -77,8 +77,8 @@ def generate_https_token_config(port: int = 8003) -> Dict[str, Any]:
|
|
77
77
|
"server": {"host": "127.0.0.1", "port": port},
|
78
78
|
"ssl": {
|
79
79
|
"enabled": True,
|
80
|
-
"cert_file": "./certs/
|
81
|
-
"key_file": "./keys/
|
80
|
+
"cert_file": "./certs/localhost_server.crt",
|
81
|
+
"key_file": "./keys/localhost_server.key"
|
82
82
|
},
|
83
83
|
"security": {
|
84
84
|
"enabled": True,
|
@@ -102,9 +102,9 @@ def generate_mtls_no_roles_config(port: int = 8004) -> Dict[str, Any]:
|
|
102
102
|
"server": {"host": "127.0.0.1", "port": port},
|
103
103
|
"ssl": {
|
104
104
|
"enabled": True,
|
105
|
-
"cert_file": "./certs/
|
106
|
-
"key_file": "./keys/
|
107
|
-
"ca_cert": "./certs/
|
105
|
+
"cert_file": "./certs/localhost_server.crt",
|
106
|
+
"key_file": "./keys/localhost_server.key",
|
107
|
+
"ca_cert": "./certs/mcp_proxy_adapter_test_ca_ca.crt",
|
108
108
|
"verify_client": True
|
109
109
|
},
|
110
110
|
"security": {
|
@@ -120,9 +120,9 @@ def generate_mtls_with_roles_config(port: int = 8005) -> Dict[str, Any]:
|
|
120
120
|
"server": {"host": "127.0.0.1", "port": port},
|
121
121
|
"ssl": {
|
122
122
|
"enabled": True,
|
123
|
-
"cert_file": "./certs/
|
124
|
-
"key_file": "./keys/
|
125
|
-
"ca_cert": "./certs/
|
123
|
+
"cert_file": "./certs/localhost_server.crt",
|
124
|
+
"key_file": "./keys/localhost_server.key",
|
125
|
+
"ca_cert": "./certs/mcp_proxy_adapter_test_ca_ca.crt",
|
126
126
|
"verify_client": True
|
127
127
|
},
|
128
128
|
"registration": {
|
@@ -69,9 +69,9 @@ class SecurityTestRunner:
|
|
69
69
|
return False
|
70
70
|
# Check if certificates exist
|
71
71
|
cert_files = [
|
72
|
-
"certs/
|
73
|
-
"certs/
|
74
|
-
"
|
72
|
+
"certs/mcp_proxy_adapter_test_ca_ca.crt",
|
73
|
+
"certs/localhost_server.crt",
|
74
|
+
"keys/localhost_server.key"
|
75
75
|
]
|
76
76
|
missing_certs = []
|
77
77
|
for cert_file in cert_files:
|
@@ -79,7 +79,7 @@ class SecurityTestRunner:
|
|
79
79
|
missing_certs.append(cert_file)
|
80
80
|
if missing_certs:
|
81
81
|
print(f"❌ Missing certificates: {missing_certs}")
|
82
|
-
print("💡 Run: python
|
82
|
+
print("💡 Run: python -m mcp_proxy_adapter.examples.setup_test_environment to generate certificates")
|
83
83
|
return False
|
84
84
|
print("✅ Prerequisites check passed")
|
85
85
|
return True
|
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.2.
|
3
|
+
Version: 6.2.16
|
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
|
@@ -1,10 +1,10 @@
|
|
1
1
|
mcp_proxy_adapter/__init__.py,sha256=B7m1YWyv_Wb87-Q-JqVpHQgwajnfIgDyZ_iIxzdTbBY,1021
|
2
|
-
mcp_proxy_adapter/__main__.py,sha256=
|
2
|
+
mcp_proxy_adapter/__main__.py,sha256=eIGzrSpsJp6K3hRlge3aXv6wJV9LqhreCe5ADLh3ShA,769
|
3
3
|
mcp_proxy_adapter/config.py,sha256=z4rUbJdxYj6vYw05OM_kMXs1Qn2HRQXGHI9PB4hgPd4,12867
|
4
4
|
mcp_proxy_adapter/custom_openapi.py,sha256=jYUrCy8C1mShh3sjKj-JkzSMLAvxDLTvtzSJFj5HUNg,15023
|
5
5
|
mcp_proxy_adapter/main.py,sha256=_DJwMZdN0393UR-U7xfQh59EpbDDgv1oWPFf-v2MoII,2147
|
6
6
|
mcp_proxy_adapter/openapi.py,sha256=36vOEbJjGnVZR6hUhl6mHCD29HYOEFKo2bL0JdGSm-4,13952
|
7
|
-
mcp_proxy_adapter/version.py,sha256=
|
7
|
+
mcp_proxy_adapter/version.py,sha256=EbhAFYMvso3_sY9GXzxewJDgTXDNtxDrf6Tg5C3k068,76
|
8
8
|
mcp_proxy_adapter/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
mcp_proxy_adapter/api/app.py,sha256=khl4kaI4mJ6dNbfAK7hR97Ek-eWC9NBeuXHr6GVbLoU,28911
|
10
10
|
mcp_proxy_adapter/api/handlers.py,sha256=DcZT7MVBV33q-0EJ0iFqxE0VgBkFt6d_SqoRkntwyvc,8477
|
@@ -80,7 +80,7 @@ mcp_proxy_adapter/core/ssl_utils.py,sha256=_2mhpuoiRpSbUBifnQvtuziQfBRrXQUKtB58A
|
|
80
80
|
mcp_proxy_adapter/core/transport_manager.py,sha256=ppcgjO-7Ulrk1ovlzlXVM89Iw4VOGA3awKgLf7FFAJ0,9518
|
81
81
|
mcp_proxy_adapter/core/unified_config_adapter.py,sha256=cpN_VrliIFGDH3JsfRkTlFdQvLcmuMYYedq0QEzlb0Y,22857
|
82
82
|
mcp_proxy_adapter/core/utils.py,sha256=ly8Ttg2v1OBukThJLxudRvmttU1hxJFLJUfat4b2dOI,3268
|
83
|
-
mcp_proxy_adapter/examples/__init__.py,sha256=
|
83
|
+
mcp_proxy_adapter/examples/__init__.py,sha256=IYBYlTvwsZ52462WSYLWNastsR9aG-C5DXfx2T0LXcQ,450
|
84
84
|
mcp_proxy_adapter/examples/create_certificates_simple.py,sha256=2KS-s3amvAqasvdh-cxY7ARuFAHVjtbtr_EJF2SKVQ0,23221
|
85
85
|
mcp_proxy_adapter/examples/debug_request_state.py,sha256=x_H3NIlkmIS6lZimvEM6kCXxGdpgFw99Sdui8qa_qeU,4347
|
86
86
|
mcp_proxy_adapter/examples/debug_role_chain.py,sha256=33l2Tk5mrcnwPFwqm2NTHcrWaJrXUU2wxW2I6Y4uIg4,8344
|
@@ -88,11 +88,11 @@ mcp_proxy_adapter/examples/demo_client.py,sha256=inic-FP5qG8oQXUaCrtEhmhac_PDZ1p
|
|
88
88
|
mcp_proxy_adapter/examples/generate_all_certificates.py,sha256=rgcwqIkQ1eDfEIRFRXGIOz-jOSS1w0GPBRhYvMl6Vjc,16948
|
89
89
|
mcp_proxy_adapter/examples/generate_certificates.py,sha256=A34OHUEiFvINOHrm3_JiDSbp-WG-eQXIvKCsE8JAeXQ,6616
|
90
90
|
mcp_proxy_adapter/examples/generate_certificates_and_tokens.py,sha256=J0qHm_BMY8RYqfuwf7V7xKsHcsRJx8E7x-8JxmW5sPw,15988
|
91
|
-
mcp_proxy_adapter/examples/generate_test_configs.py,sha256
|
91
|
+
mcp_proxy_adapter/examples/generate_test_configs.py,sha256=-g-03nFU3OhdJ_QCkUnM46ZfL-nK8l420p1CrQwhiSQ,10717
|
92
92
|
mcp_proxy_adapter/examples/proxy_registration_example.py,sha256=g59_QG2D1CCqhIXEvgy2XmgXI3toLmLyH7hL3uHZwC8,12647
|
93
93
|
mcp_proxy_adapter/examples/run_example.py,sha256=o8rcy9Xo0UuZG4MpKdex3pFWYdtAi6uW8dEBQE6Yzbw,2539
|
94
94
|
mcp_proxy_adapter/examples/run_proxy_server.py,sha256=MF5lWqARgeaQN0Eb27rdFquBdbTeSXJDz0kaJTQm62w,4959
|
95
|
-
mcp_proxy_adapter/examples/run_security_tests.py,sha256=
|
95
|
+
mcp_proxy_adapter/examples/run_security_tests.py,sha256=IxyD_Z7TYr6wBe2k3MPxv9bb_M8VAUTJf94ZiqmxP4g,16154
|
96
96
|
mcp_proxy_adapter/examples/run_security_tests_fixed.py,sha256=fNQsbALf9548xJ0OGPKYx5Crzg1GbcL8CSh1x_oKu_A,10540
|
97
97
|
mcp_proxy_adapter/examples/security_test_client.py,sha256=eBy6pZ5Dhdo-qi_7Fk-IWGHq7zAJA-om8RBuOep4XSs,28022
|
98
98
|
mcp_proxy_adapter/examples/setup_test_environment.py,sha256=Y6oNaR95Rmn2csupYoGV-_mMF6AtqJ31vwLhY0TQtMk,11319
|
@@ -114,8 +114,8 @@ mcp_proxy_adapter/examples/full_application/commands/dynamic_calculator_command.
|
|
114
114
|
mcp_proxy_adapter/examples/full_application/hooks/__init__.py,sha256=ORG4cL8cSXEMmZ0CEPz75OVuwg54pdDm2GIBpP4dtcs,200
|
115
115
|
mcp_proxy_adapter/examples/full_application/hooks/application_hooks.py,sha256=TYXuHI-KW_mH5r8mSKgNMJCr3moeEKrqC4Eex0U298k,3457
|
116
116
|
mcp_proxy_adapter/examples/full_application/hooks/builtin_command_hooks.py,sha256=IaskSrckZS6bE3aGxSBL8aTj-iJTSI2ysfsFjhjncyM,2975
|
117
|
-
mcp_proxy_adapter-6.2.
|
118
|
-
mcp_proxy_adapter-6.2.
|
119
|
-
mcp_proxy_adapter-6.2.
|
120
|
-
mcp_proxy_adapter-6.2.
|
121
|
-
mcp_proxy_adapter-6.2.
|
117
|
+
mcp_proxy_adapter-6.2.16.dist-info/licenses/LICENSE,sha256=6KdtUcTwmTRbJrAmYjVn7e6S-V42ubeDJ-AiVEzZ510,1075
|
118
|
+
mcp_proxy_adapter-6.2.16.dist-info/METADATA,sha256=0fHA7VbwQ3MyC6UB4BlEgP1XKS7qh4m25UmQwQnaGts,22199
|
119
|
+
mcp_proxy_adapter-6.2.16.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
120
|
+
mcp_proxy_adapter-6.2.16.dist-info/top_level.txt,sha256=JZT7vPLBYrtroX-ij68JBhJYbjDdghcV-DFySRy-Nnw,18
|
121
|
+
mcp_proxy_adapter-6.2.16.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|