mcp-proxy-adapter 6.4.22__py3-none-any.whl → 6.4.24__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.
@@ -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:3004")
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,9 +492,9 @@ async def main():
492
492
 
493
493
  # Configure Hypercorn
494
494
  config = hypercorn.config.Config()
495
- config.bind = ["127.0.0.1:3004"]
496
- config.certfile = "mtls_certificates/server/mcp-proxy.pem"
497
- config.keyfile = "mtls_certificates/server/mcp-proxy.key"
495
+ config.bind = ["127.0.0.1:20005"]
496
+ config.certfile = "certs/localhost_server.crt"
497
+ config.keyfile = "keys/localhost_server.key"
498
498
  config.loglevel = "info"
499
499
 
500
500
  # Run server with mTLS using Hypercorn
@@ -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:3004/health",
562
+ "https://127.0.0.1:20005/health",
552
563
  verify=False,
553
564
  timeout=10
554
565
  )
@@ -2,4 +2,4 @@
2
2
  Version information for MCP Proxy Adapter.
3
3
  """
4
4
 
5
- __version__ = "6.4.22"
5
+ __version__ = "6.4.24"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp-proxy-adapter
3
- Version: 6.4.22
3
+ Version: 6.4.24
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=HSPvuPdx1xbw2_HaQqKzJeZlALiKWrlAjsXB8dYSrgQ,75
7
+ mcp_proxy_adapter/version.py,sha256=isQGxCRRHAIkEX4VFVbajnoKgOucixthyFy9xg11a-g,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=u4IlYHGRYnOGtwYBaizocxSCwqCVOrEVa2X_tV8JBzo,42986
102
+ mcp_proxy_adapter/examples/setup_test_environment.py,sha256=UDe0-_vaXmHu_DKCwLPg7J2YHodoPdPDwsSOXxS6P4A,43420
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.22.dist-info/METADATA,sha256=p96tfgFIqShrtAoN9SxRdQiqNp3wnfDJ7LBARtJkZjo,6087
125
- mcp_proxy_adapter-6.4.22.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
126
- mcp_proxy_adapter-6.4.22.dist-info/entry_points.txt,sha256=J3eV6ID0lt_VSp4lIdIgBFTqLCThgObNNxRCbyfiMHw,70
127
- mcp_proxy_adapter-6.4.22.dist-info/top_level.txt,sha256=JZT7vPLBYrtroX-ij68JBhJYbjDdghcV-DFySRy-Nnw,18
128
- mcp_proxy_adapter-6.4.22.dist-info/RECORD,,
124
+ mcp_proxy_adapter-6.4.24.dist-info/METADATA,sha256=0C5vETesvLNBA-9WkkEg_5RCRkp4mSTJnUNb3H4M4Bw,6087
125
+ mcp_proxy_adapter-6.4.24.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
126
+ mcp_proxy_adapter-6.4.24.dist-info/entry_points.txt,sha256=J3eV6ID0lt_VSp4lIdIgBFTqLCThgObNNxRCbyfiMHw,70
127
+ mcp_proxy_adapter-6.4.24.dist-info/top_level.txt,sha256=JZT7vPLBYrtroX-ij68JBhJYbjDdghcV-DFySRy-Nnw,18
128
+ mcp_proxy_adapter-6.4.24.dist-info/RECORD,,