mcp-proxy-adapter 6.4.22__py3-none-any.whl → 6.4.23__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 +14 -3
- mcp_proxy_adapter/version.py +1 -1
- {mcp_proxy_adapter-6.4.22.dist-info → mcp_proxy_adapter-6.4.23.dist-info}/METADATA +1 -1
- {mcp_proxy_adapter-6.4.22.dist-info → mcp_proxy_adapter-6.4.23.dist-info}/RECORD +7 -7
- {mcp_proxy_adapter-6.4.22.dist-info → mcp_proxy_adapter-6.4.23.dist-info}/WHEEL +0 -0
- {mcp_proxy_adapter-6.4.22.dist-info → mcp_proxy_adapter-6.4.23.dist-info}/entry_points.txt +0 -0
- {mcp_proxy_adapter-6.4.22.dist-info → mcp_proxy_adapter-6.4.23.dist-info}/top_level.txt +0 -0
@@ -483,7 +483,7 @@ async def health_check():
|
|
483
483
|
async def main():
|
484
484
|
"""Run the mTLS proxy server."""
|
485
485
|
print("🚀 Starting Test mTLS Proxy Server...")
|
486
|
-
print("📡 Server URL: https://127.0.0.1:
|
486
|
+
print("📡 Server URL: https://127.0.0.1:20005")
|
487
487
|
print("🔐 mTLS enabled with client certificate verification")
|
488
488
|
print("📋 Available endpoints:")
|
489
489
|
print(" POST /register - Register server")
|
@@ -492,7 +492,7 @@ async def main():
|
|
492
492
|
|
493
493
|
# Configure Hypercorn
|
494
494
|
config = hypercorn.config.Config()
|
495
|
-
config.bind = ["127.0.0.1:
|
495
|
+
config.bind = ["127.0.0.1:20005"]
|
496
496
|
config.certfile = "mtls_certificates/server/mcp-proxy.pem"
|
497
497
|
config.keyfile = "mtls_certificates/server/mcp-proxy.key"
|
498
498
|
config.loglevel = "info"
|
@@ -533,6 +533,17 @@ def test_proxy_registration():
|
|
533
533
|
print("🧪 Testing Proxy Registration SSL Configuration Fix")
|
534
534
|
print("=" * 60)
|
535
535
|
|
536
|
+
# Kill any existing process on port 20005
|
537
|
+
print("🧹 Killing any existing process on port 20005...")
|
538
|
+
try:
|
539
|
+
subprocess.run(["fuser", "-k", "20005/tcp"], check=False, capture_output=True)
|
540
|
+
except FileNotFoundError:
|
541
|
+
# fuser not available, try with lsof
|
542
|
+
try:
|
543
|
+
subprocess.run(["lsof", "-ti:20005", "|", "xargs", "kill", "-9"], shell=True, check=False, capture_output=True)
|
544
|
+
except:
|
545
|
+
pass
|
546
|
+
|
536
547
|
# Start proxy server
|
537
548
|
print("🚀 Starting test proxy server...")
|
538
549
|
proxy_process = subprocess.Popen([
|
@@ -548,7 +559,7 @@ def test_proxy_registration():
|
|
548
559
|
print("🔍 Testing proxy server health...")
|
549
560
|
try:
|
550
561
|
response = requests.get(
|
551
|
-
"https://127.0.0.1:
|
562
|
+
"https://127.0.0.1:20005/health",
|
552
563
|
verify=False,
|
553
564
|
timeout=10
|
554
565
|
)
|
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.4.
|
3
|
+
Version: 6.4.23
|
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=idp3KUR7CT7kTXLVPvvclJlNnt8d_HYl8_jY98uknmo,4677
|
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=7x3yx8CMZQlxI2EQHdhzccRG09eFDp0jcYh6z05dJlc,75
|
8
8
|
mcp_proxy_adapter/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
mcp_proxy_adapter/api/app.py,sha256=UQ7_m-LbUzKuuPJPxS_69ahANUQ5rnPwoddQ2MMXNkg,33941
|
10
10
|
mcp_proxy_adapter/api/handlers.py,sha256=iyFGoEuUS1wxbV1ELA0zmaxIyQR7j4zw-4MrD-uIO6E,8294
|
@@ -99,7 +99,7 @@ mcp_proxy_adapter/examples/run_proxy_server.py,sha256=SBLSSY2F_VEBQD3MsCE_Pa9xFE
|
|
99
99
|
mcp_proxy_adapter/examples/run_security_tests.py,sha256=0vjaUdWC-rLyviQuNxM3PtfiU9TzSRuxGxWMehrFA_w,23311
|
100
100
|
mcp_proxy_adapter/examples/run_security_tests_fixed.py,sha256=2BKMT0_-FhmcZA73hdQOt2XR7Cgb9Sq8qBI88BkwAAA,10934
|
101
101
|
mcp_proxy_adapter/examples/security_test_client.py,sha256=K5gEVat1SJS2pBVxqLl5c9-uiiG12k8UT3ULQDXZ2Uc,35713
|
102
|
-
mcp_proxy_adapter/examples/setup_test_environment.py,sha256=
|
102
|
+
mcp_proxy_adapter/examples/setup_test_environment.py,sha256=LmTq-sscQEiwca0CkkCeZ177HwFyMNiKNISro24ttOY,43445
|
103
103
|
mcp_proxy_adapter/examples/test_config.py,sha256=ekEoUZe9q484vU_0IxOVhQdNMVJXG3IpmQpP--VmuDI,6491
|
104
104
|
mcp_proxy_adapter/examples/test_config_generator.py,sha256=PBXk1V_awJ-iBlbE66Pme5sQwu6CJDxkmqgm8uPtM58,4091
|
105
105
|
mcp_proxy_adapter/examples/test_examples.py,sha256=CYlVatdHUVC_rwv4NsvxFG3GXiKIyxPDUH43BOJHjrU,12330
|
@@ -121,8 +121,8 @@ mcp_proxy_adapter/examples/full_application/hooks/builtin_command_hooks.py,sha25
|
|
121
121
|
mcp_proxy_adapter/examples/scripts/config_generator.py,sha256=SKFlRRCE_pEHGbfjDuzfKpvV2DMwG6lRfK90uJwRlJM,33410
|
122
122
|
mcp_proxy_adapter/examples/scripts/create_certificates_simple.py,sha256=yCWdUIhMSDPwoPhuLR9rhPdf7jLN5hCjzNfYYgVyHnw,27769
|
123
123
|
mcp_proxy_adapter/examples/scripts/generate_certificates_and_tokens.py,sha256=hUCoJH3fy5WeR_YMHj-_W0mR0ZKUWqewH4FVN3yWyrM,17972
|
124
|
-
mcp_proxy_adapter-6.4.
|
125
|
-
mcp_proxy_adapter-6.4.
|
126
|
-
mcp_proxy_adapter-6.4.
|
127
|
-
mcp_proxy_adapter-6.4.
|
128
|
-
mcp_proxy_adapter-6.4.
|
124
|
+
mcp_proxy_adapter-6.4.23.dist-info/METADATA,sha256=ueuli4fagRCcnmU9Y5-qLHUaCNCakvfKbjUpBUyAuIg,6087
|
125
|
+
mcp_proxy_adapter-6.4.23.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
126
|
+
mcp_proxy_adapter-6.4.23.dist-info/entry_points.txt,sha256=J3eV6ID0lt_VSp4lIdIgBFTqLCThgObNNxRCbyfiMHw,70
|
127
|
+
mcp_proxy_adapter-6.4.23.dist-info/top_level.txt,sha256=JZT7vPLBYrtroX-ij68JBhJYbjDdghcV-DFySRy-Nnw,18
|
128
|
+
mcp_proxy_adapter-6.4.23.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|