mcp-proxy-adapter 6.4.0__py3-none-any.whl → 6.4.1__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.
@@ -8,6 +8,7 @@ Generates 6 different configuration types for testing various security scenarios
8
8
  import json
9
9
  import os
10
10
  import argparse
11
+ import uuid
11
12
  from typing import Dict, Any
12
13
 
13
14
 
@@ -16,6 +17,7 @@ def generate_http_simple_config(
16
17
  ) -> Dict[str, Any]:
17
18
  """Generate HTTP configuration without authorization."""
18
19
  return {
20
+ "uuid": str(uuid.uuid4()),
19
21
  "server": {"host": "127.0.0.1", "port": port},
20
22
  "ssl": {"enabled": False},
21
23
  "security": {"enabled": False},
@@ -47,6 +49,7 @@ def generate_http_token_config(
47
49
  ) -> Dict[str, Any]:
48
50
  """Generate HTTP configuration with token authorization."""
49
51
  return {
52
+ "uuid": str(uuid.uuid4()),
50
53
  "server": {"host": "127.0.0.1", "port": port},
51
54
  "ssl": {"enabled": False},
52
55
  "security": {
@@ -83,6 +86,7 @@ def generate_https_simple_config(
83
86
  ) -> Dict[str, Any]:
84
87
  """Generate HTTPS configuration without client certificate verification and authorization."""
85
88
  return {
89
+ "uuid": str(uuid.uuid4()),
86
90
  "server": {"host": "127.0.0.1", "port": port},
87
91
  "ssl": {
88
92
  "enabled": True,
@@ -108,6 +112,7 @@ def generate_https_token_config(
108
112
  ) -> Dict[str, Any]:
109
113
  """Generate HTTPS configuration without client certificate verification with token authorization."""
110
114
  return {
115
+ "uuid": str(uuid.uuid4()),
111
116
  "server": {"host": "127.0.0.1", "port": port},
112
117
  "ssl": {
113
118
  "enabled": True,
@@ -147,12 +152,15 @@ def generate_mtls_no_roles_config(
147
152
  ) -> Dict[str, Any]:
148
153
  """Generate mTLS configuration without roles."""
149
154
  return {
155
+ "uuid": str(uuid.uuid4()),
150
156
  "server": {"host": "127.0.0.1", "port": port},
151
157
  "ssl": {
152
158
  "enabled": True,
153
159
  "cert_file": f"{certs_dir}/localhost_server.crt",
154
160
  "key_file": f"{keys_dir}/localhost_server.key",
155
161
  "ca_cert": f"{certs_dir}/mcp_proxy_adapter_ca_ca.crt",
162
+ "client_cert_file": f"{certs_dir}/admin_cert.pem",
163
+ "client_key_file": f"{certs_dir}/admin_key.pem",
156
164
  "verify_client": True,
157
165
  "client_cert_required": True,
158
166
  },
@@ -174,12 +182,15 @@ def generate_mtls_with_roles_config(
174
182
  ) -> Dict[str, Any]:
175
183
  """Generate mTLS configuration with roles."""
176
184
  return {
185
+ "uuid": str(uuid.uuid4()),
177
186
  "server": {"host": "127.0.0.1", "port": port},
178
187
  "ssl": {
179
188
  "enabled": True,
180
189
  "cert_file": f"{certs_dir}/localhost_server.crt",
181
190
  "key_file": f"{keys_dir}/localhost_server.key",
182
191
  "ca_cert": f"{certs_dir}/mcp_proxy_adapter_ca_ca.crt",
192
+ "client_cert_file": f"{certs_dir}/admin_cert.pem",
193
+ "client_key_file": f"{certs_dir}/admin_key.pem",
183
194
  "verify_client": True,
184
195
  },
185
196
  "registration": {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp-proxy-adapter
3
- Version: 6.4.0
3
+ Version: 6.4.1
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
@@ -90,7 +90,7 @@ mcp_proxy_adapter/examples/generate_all_certificates.py,sha256=lLP5RKmJwpSyprvrx
90
90
  mcp_proxy_adapter/examples/generate_certificates.py,sha256=VRJnT9Za2Wk_oKRT5g2SA7qcGeBSxZm9wPMOM5i50T0,6707
91
91
  mcp_proxy_adapter/examples/generate_certificates_and_tokens.py,sha256=hUCoJH3fy5WeR_YMHj-_W0mR0ZKUWqewH4FVN3yWyrM,17972
92
92
  mcp_proxy_adapter/examples/generate_comprehensive_config.py,sha256=2UyTGIUKxw3EdCFaOMwO1vB-OZjOQV0senU44JPuyH0,4787
93
- mcp_proxy_adapter/examples/generate_test_configs.py,sha256=hzb9NBCl21Og9Tsox8nRT_uG0AhgT-t7uRyghinucc8,13853
93
+ mcp_proxy_adapter/examples/generate_test_configs.py,sha256=RorZOrhjtoFwtC0Y0kQK7wBA1OnvHDod9nK-C2PMgPo,14323
94
94
  mcp_proxy_adapter/examples/proxy_registration_example.py,sha256=vemRhftnjbiOBCJkmtDGqlWQ8syTG0a8755GCOnaQsg,12503
95
95
  mcp_proxy_adapter/examples/run_example.py,sha256=yp-a6HIrSk3ddQmbn0KkuKwErId0aNfj028TE6U-zmY,2626
96
96
  mcp_proxy_adapter/examples/run_full_test_suite.py,sha256=bR25OOrmWnLQccZno9cZhi_Ltk_6k8DFR2vXPCj1XQ4,12468
@@ -139,8 +139,8 @@ mcp_proxy_adapter/schemas/base_schema.json,sha256=v9G9cGMd4dRhCZsOQ_FMqOi5VFyVbI
139
139
  mcp_proxy_adapter/schemas/openapi_schema.json,sha256=C3yLkwmDsvnLW9B5gnKKdBGl4zxkeU-rEmjTrNVsQU0,8405
140
140
  mcp_proxy_adapter/utils/config_generator.py,sha256=UXxuxxAyKTesAS3DOofQ26e20v771inA7EfBV8PZD1c,47543
141
141
  mcp_proxy_adapter_issue_package/demonstrate_issue.py,sha256=O54fwWQvUAjEGiHhQGm1JLnARkhVCwAqjBk_89HyRbY,7894
142
- mcp_proxy_adapter-6.4.0.dist-info/METADATA,sha256=86FetHtWjlKGrm87ESDpmtKSLTIRFIexiE3eqU53aus,22403
143
- mcp_proxy_adapter-6.4.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
144
- mcp_proxy_adapter-6.4.0.dist-info/entry_points.txt,sha256=J3eV6ID0lt_VSp4lIdIgBFTqLCThgObNNxRCbyfiMHw,70
145
- mcp_proxy_adapter-6.4.0.dist-info/top_level.txt,sha256=CHk-Mc-AxjO-tRheegA2qLiQnU4vZRnxuTF81So6SAc,50
146
- mcp_proxy_adapter-6.4.0.dist-info/RECORD,,
142
+ mcp_proxy_adapter-6.4.1.dist-info/METADATA,sha256=z0V7ZTjQlTXg1cGCGu5NaRbvqQk4Z7moSp3lvLeNgKE,22403
143
+ mcp_proxy_adapter-6.4.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
144
+ mcp_proxy_adapter-6.4.1.dist-info/entry_points.txt,sha256=J3eV6ID0lt_VSp4lIdIgBFTqLCThgObNNxRCbyfiMHw,70
145
+ mcp_proxy_adapter-6.4.1.dist-info/top_level.txt,sha256=CHk-Mc-AxjO-tRheegA2qLiQnU4vZRnxuTF81So6SAc,50
146
+ mcp_proxy_adapter-6.4.1.dist-info/RECORD,,