mcp-mesh 0.7.20__py3-none-any.whl → 0.8.0__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_mesh/__init__.py +1 -1
- _mcp_mesh/engine/dependency_injector.py +13 -15
- _mcp_mesh/engine/http_wrapper.py +69 -10
- _mcp_mesh/engine/mesh_llm_agent.py +29 -10
- _mcp_mesh/engine/mesh_llm_agent_injector.py +77 -41
- _mcp_mesh/engine/provider_handlers/__init__.py +14 -1
- _mcp_mesh/engine/provider_handlers/base_provider_handler.py +114 -8
- _mcp_mesh/engine/provider_handlers/claude_handler.py +15 -57
- _mcp_mesh/engine/provider_handlers/gemini_handler.py +181 -0
- _mcp_mesh/engine/provider_handlers/openai_handler.py +8 -63
- _mcp_mesh/engine/provider_handlers/provider_handler_registry.py +16 -10
- _mcp_mesh/engine/response_parser.py +61 -15
- _mcp_mesh/engine/signature_analyzer.py +58 -68
- _mcp_mesh/engine/unified_mcp_proxy.py +19 -35
- _mcp_mesh/pipeline/__init__.py +9 -20
- _mcp_mesh/pipeline/api_heartbeat/__init__.py +12 -7
- _mcp_mesh/pipeline/api_heartbeat/api_lifespan_integration.py +23 -49
- _mcp_mesh/pipeline/api_heartbeat/rust_api_heartbeat.py +429 -0
- _mcp_mesh/pipeline/api_startup/api_pipeline.py +7 -9
- _mcp_mesh/pipeline/api_startup/api_server_setup.py +91 -70
- _mcp_mesh/pipeline/api_startup/fastapi_discovery.py +22 -23
- _mcp_mesh/pipeline/api_startup/middleware_integration.py +32 -24
- _mcp_mesh/pipeline/api_startup/route_collection.py +2 -4
- _mcp_mesh/pipeline/mcp_heartbeat/__init__.py +5 -17
- _mcp_mesh/pipeline/mcp_heartbeat/rust_heartbeat.py +710 -0
- _mcp_mesh/pipeline/mcp_startup/__init__.py +2 -5
- _mcp_mesh/pipeline/mcp_startup/configuration.py +1 -1
- _mcp_mesh/pipeline/mcp_startup/fastapiserver_setup.py +31 -8
- _mcp_mesh/pipeline/mcp_startup/heartbeat_loop.py +6 -7
- _mcp_mesh/pipeline/mcp_startup/startup_orchestrator.py +23 -11
- _mcp_mesh/pipeline/mcp_startup/startup_pipeline.py +3 -8
- _mcp_mesh/pipeline/shared/mesh_pipeline.py +0 -2
- _mcp_mesh/reload.py +1 -3
- _mcp_mesh/shared/__init__.py +2 -8
- _mcp_mesh/shared/config_resolver.py +124 -80
- _mcp_mesh/shared/defaults.py +89 -14
- _mcp_mesh/shared/fastapi_middleware_manager.py +149 -91
- _mcp_mesh/shared/host_resolver.py +8 -46
- _mcp_mesh/shared/server_discovery.py +115 -86
- _mcp_mesh/shared/simple_shutdown.py +44 -86
- _mcp_mesh/tracing/execution_tracer.py +2 -6
- _mcp_mesh/tracing/redis_metadata_publisher.py +24 -79
- _mcp_mesh/tracing/trace_context_helper.py +3 -13
- _mcp_mesh/tracing/utils.py +29 -15
- _mcp_mesh/utils/fastmcp_schema_extractor.py +5 -4
- {mcp_mesh-0.7.20.dist-info → mcp_mesh-0.8.0.dist-info}/METADATA +7 -5
- mcp_mesh-0.8.0.dist-info/RECORD +85 -0
- mesh/__init__.py +12 -1
- mesh/decorators.py +248 -33
- mesh/helpers.py +52 -0
- mesh/types.py +40 -13
- _mcp_mesh/generated/.openapi-generator/FILES +0 -50
- _mcp_mesh/generated/.openapi-generator/VERSION +0 -1
- _mcp_mesh/generated/.openapi-generator-ignore +0 -15
- _mcp_mesh/generated/mcp_mesh_registry_client/__init__.py +0 -90
- _mcp_mesh/generated/mcp_mesh_registry_client/api/__init__.py +0 -6
- _mcp_mesh/generated/mcp_mesh_registry_client/api/agents_api.py +0 -1088
- _mcp_mesh/generated/mcp_mesh_registry_client/api/health_api.py +0 -764
- _mcp_mesh/generated/mcp_mesh_registry_client/api/tracing_api.py +0 -303
- _mcp_mesh/generated/mcp_mesh_registry_client/api_client.py +0 -798
- _mcp_mesh/generated/mcp_mesh_registry_client/api_response.py +0 -21
- _mcp_mesh/generated/mcp_mesh_registry_client/configuration.py +0 -577
- _mcp_mesh/generated/mcp_mesh_registry_client/exceptions.py +0 -217
- _mcp_mesh/generated/mcp_mesh_registry_client/models/__init__.py +0 -55
- _mcp_mesh/generated/mcp_mesh_registry_client/models/agent_info.py +0 -158
- _mcp_mesh/generated/mcp_mesh_registry_client/models/agent_metadata.py +0 -126
- _mcp_mesh/generated/mcp_mesh_registry_client/models/agent_metadata_dependencies_inner.py +0 -139
- _mcp_mesh/generated/mcp_mesh_registry_client/models/agent_metadata_dependencies_inner_one_of.py +0 -92
- _mcp_mesh/generated/mcp_mesh_registry_client/models/agent_registration.py +0 -103
- _mcp_mesh/generated/mcp_mesh_registry_client/models/agent_registration_metadata.py +0 -136
- _mcp_mesh/generated/mcp_mesh_registry_client/models/agents_list_response.py +0 -100
- _mcp_mesh/generated/mcp_mesh_registry_client/models/capability_info.py +0 -107
- _mcp_mesh/generated/mcp_mesh_registry_client/models/decorator_agent_metadata.py +0 -112
- _mcp_mesh/generated/mcp_mesh_registry_client/models/decorator_agent_request.py +0 -103
- _mcp_mesh/generated/mcp_mesh_registry_client/models/decorator_info.py +0 -105
- _mcp_mesh/generated/mcp_mesh_registry_client/models/dependency_info.py +0 -103
- _mcp_mesh/generated/mcp_mesh_registry_client/models/dependency_resolution_info.py +0 -106
- _mcp_mesh/generated/mcp_mesh_registry_client/models/error_response.py +0 -91
- _mcp_mesh/generated/mcp_mesh_registry_client/models/health_response.py +0 -103
- _mcp_mesh/generated/mcp_mesh_registry_client/models/heartbeat_request.py +0 -101
- _mcp_mesh/generated/mcp_mesh_registry_client/models/heartbeat_request_metadata.py +0 -111
- _mcp_mesh/generated/mcp_mesh_registry_client/models/heartbeat_response.py +0 -117
- _mcp_mesh/generated/mcp_mesh_registry_client/models/llm_provider.py +0 -93
- _mcp_mesh/generated/mcp_mesh_registry_client/models/llm_provider_resolution_info.py +0 -106
- _mcp_mesh/generated/mcp_mesh_registry_client/models/llm_tool_filter.py +0 -109
- _mcp_mesh/generated/mcp_mesh_registry_client/models/llm_tool_filter_filter_inner.py +0 -139
- _mcp_mesh/generated/mcp_mesh_registry_client/models/llm_tool_filter_filter_inner_one_of.py +0 -91
- _mcp_mesh/generated/mcp_mesh_registry_client/models/llm_tool_info.py +0 -101
- _mcp_mesh/generated/mcp_mesh_registry_client/models/llm_tool_resolution_info.py +0 -120
- _mcp_mesh/generated/mcp_mesh_registry_client/models/mesh_agent_register_metadata.py +0 -112
- _mcp_mesh/generated/mcp_mesh_registry_client/models/mesh_agent_registration.py +0 -129
- _mcp_mesh/generated/mcp_mesh_registry_client/models/mesh_registration_response.py +0 -153
- _mcp_mesh/generated/mcp_mesh_registry_client/models/mesh_registration_response_dependencies_resolved_value_inner.py +0 -101
- _mcp_mesh/generated/mcp_mesh_registry_client/models/mesh_tool_dependency_registration.py +0 -93
- _mcp_mesh/generated/mcp_mesh_registry_client/models/mesh_tool_register_metadata.py +0 -107
- _mcp_mesh/generated/mcp_mesh_registry_client/models/mesh_tool_registration.py +0 -117
- _mcp_mesh/generated/mcp_mesh_registry_client/models/registration_response.py +0 -119
- _mcp_mesh/generated/mcp_mesh_registry_client/models/resolved_llm_provider.py +0 -110
- _mcp_mesh/generated/mcp_mesh_registry_client/models/rich_dependency.py +0 -93
- _mcp_mesh/generated/mcp_mesh_registry_client/models/root_response.py +0 -92
- _mcp_mesh/generated/mcp_mesh_registry_client/models/standardized_dependency.py +0 -93
- _mcp_mesh/generated/mcp_mesh_registry_client/models/trace_event.py +0 -106
- _mcp_mesh/generated/mcp_mesh_registry_client/py.typed +0 -0
- _mcp_mesh/generated/mcp_mesh_registry_client/rest.py +0 -259
- _mcp_mesh/pipeline/api_heartbeat/api_dependency_resolution.py +0 -418
- _mcp_mesh/pipeline/api_heartbeat/api_fast_heartbeat_check.py +0 -117
- _mcp_mesh/pipeline/api_heartbeat/api_health_check.py +0 -140
- _mcp_mesh/pipeline/api_heartbeat/api_heartbeat_orchestrator.py +0 -247
- _mcp_mesh/pipeline/api_heartbeat/api_heartbeat_pipeline.py +0 -311
- _mcp_mesh/pipeline/api_heartbeat/api_heartbeat_send.py +0 -386
- _mcp_mesh/pipeline/api_heartbeat/api_registry_connection.py +0 -104
- _mcp_mesh/pipeline/mcp_heartbeat/dependency_resolution.py +0 -396
- _mcp_mesh/pipeline/mcp_heartbeat/fast_heartbeat_check.py +0 -116
- _mcp_mesh/pipeline/mcp_heartbeat/heartbeat_orchestrator.py +0 -311
- _mcp_mesh/pipeline/mcp_heartbeat/heartbeat_pipeline.py +0 -282
- _mcp_mesh/pipeline/mcp_heartbeat/heartbeat_send.py +0 -98
- _mcp_mesh/pipeline/mcp_heartbeat/lifespan_integration.py +0 -84
- _mcp_mesh/pipeline/mcp_heartbeat/llm_tools_resolution.py +0 -264
- _mcp_mesh/pipeline/mcp_heartbeat/registry_connection.py +0 -79
- _mcp_mesh/pipeline/shared/registry_connection.py +0 -80
- _mcp_mesh/shared/registry_client_wrapper.py +0 -515
- mcp_mesh-0.7.20.dist-info/RECORD +0 -152
- {mcp_mesh-0.7.20.dist-info → mcp_mesh-0.8.0.dist-info}/WHEEL +0 -0
- {mcp_mesh-0.7.20.dist-info → mcp_mesh-0.8.0.dist-info}/licenses/LICENSE +0 -0
mcp_mesh-0.7.20.dist-info/RECORD
DELETED
|
@@ -1,152 +0,0 @@
|
|
|
1
|
-
_mcp_mesh/__init__.py,sha256=kAd7NUKrtS4Tde_mxKyg4PxRApo2NdkTLo_XJrfA6yc,2720
|
|
2
|
-
_mcp_mesh/reload.py,sha256=IqZeS7lsFw7bwOzDPE0LJLPkY5nR68BKc8C4srSCX1o,6239
|
|
3
|
-
_mcp_mesh/reload_runner.py,sha256=SgQKzzO2yHfSUBq8s3SpAnovWA0rveimVNaxeLCEo_0,1310
|
|
4
|
-
_mcp_mesh/engine/__init__.py,sha256=U_6Kw3vA_3RiNK0Oln5c5C7WvA9lSONV22wWzfxYHNw,2975
|
|
5
|
-
_mcp_mesh/engine/async_mcp_client.py,sha256=Sz-rXTkb1Mng_f0SpLqLuOdPJ8vZjv3DFy0i8yYOqYk,8792
|
|
6
|
-
_mcp_mesh/engine/base_injector.py,sha256=qzRLZqFP2VvEFagVovkpdldvDmm3VwPHm6tHwV58a2k,5648
|
|
7
|
-
_mcp_mesh/engine/decorator_registry.py,sha256=cch2QdQ6bKjHKEGi1XWp1YcLLO3uI2YlxwWBO7Np65E,28229
|
|
8
|
-
_mcp_mesh/engine/dependency_injector.py,sha256=VLOmYAAvWSOs1wg5nUX8Psy4IL88a_gaMZpEHNZPDEc,31536
|
|
9
|
-
_mcp_mesh/engine/http_wrapper.py,sha256=OHbbxHBLyUGDoamHZ2hpYnFKapW_djQ60Y_vMOL6J70,21173
|
|
10
|
-
_mcp_mesh/engine/llm_config.py,sha256=95bOsGWro5E1JGq7oZtEYhVdrzcIJqjht_r5vEdJVz4,2049
|
|
11
|
-
_mcp_mesh/engine/llm_errors.py,sha256=h7BiI14u-jL8vtvBfFbFDDrN7gIw8PQjXIl5AP1SBuA,3276
|
|
12
|
-
_mcp_mesh/engine/mesh_llm_agent.py,sha256=ChfHL2qXLhvI6M3BYjVe2PDVzGB-8NbdDV_ZNgP6jFk,34205
|
|
13
|
-
_mcp_mesh/engine/mesh_llm_agent_injector.py,sha256=Ji_lmycB-xGVL-J3n50eQWemYB9kpsLd1tqOTNYUZ4Q,28343
|
|
14
|
-
_mcp_mesh/engine/response_parser.py,sha256=NsOuGD7HJ0BFiiDUCp9v9cjLzVaU86HShVKzsrNnulk,8786
|
|
15
|
-
_mcp_mesh/engine/self_dependency_proxy.py,sha256=OkKt0-B_ADnJlWtHiHItoZCBZ7Su0iz2unEPFfXvrs4,3302
|
|
16
|
-
_mcp_mesh/engine/session_aware_client.py,sha256=QejKag5zYNos5BVffQvNXFMECHFMLNOv78By4e_JzQE,10589
|
|
17
|
-
_mcp_mesh/engine/session_manager.py,sha256=MCr0_fXBaUjXM51WU5EhDkiGvBdfzYQFVNb9DCXXL0A,10418
|
|
18
|
-
_mcp_mesh/engine/signature_analyzer.py,sha256=ftn9XsX0ZHWIaACdjgBVtCuIdqVU_4ST8cvcpzu4HTk,12339
|
|
19
|
-
_mcp_mesh/engine/tool_executor.py,sha256=Bf_9d02EEY9_yHm1p1-5YZ4rY6MPxn4SVpI6-3sm1uo,5456
|
|
20
|
-
_mcp_mesh/engine/tool_schema_builder.py,sha256=SQCxQIrSfdLu9-dLqiFurQLK7dhl0dc0xa0ibaxU-iE,3644
|
|
21
|
-
_mcp_mesh/engine/unified_mcp_proxy.py,sha256=4Zi2jGu16B7ObJ3YymD4gsUHdWdbmtX2hc0srUVTfsc,38175
|
|
22
|
-
_mcp_mesh/engine/provider_handlers/__init__.py,sha256=LLTCOgnuM3dlogbLmrpiMK3oB5L22eAmDC4BfxJ-L2I,593
|
|
23
|
-
_mcp_mesh/engine/provider_handlers/base_provider_handler.py,sha256=J-SPFFFG1eFSUVvfsv7y4EuNM4REjSxaYWC5E_lC6Pc,4195
|
|
24
|
-
_mcp_mesh/engine/provider_handlers/claude_handler.py,sha256=CCmlsWiCfIcgrLbAZzeSnl0g2pq0uDffT8zOj4F-sPQ,15727
|
|
25
|
-
_mcp_mesh/engine/provider_handlers/generic_handler.py,sha256=rAE3QzoB7vz4zbBPPDJTI0MOuJrfhrOdXSyzsob4uVI,5489
|
|
26
|
-
_mcp_mesh/engine/provider_handlers/openai_handler.py,sha256=Nwx2tTLAHwodO9Yw8jMgKRQU84ZE3HWKPE7MSJK04cI,8456
|
|
27
|
-
_mcp_mesh/engine/provider_handlers/provider_handler_registry.py,sha256=d2G3vndANzTiNl2ApfJuE2bmOlUI88y42144PjVst4s,5605
|
|
28
|
-
_mcp_mesh/generated/.openapi-generator-ignore,sha256=-d-Y-RVAZRrHw36jO0b79oDXpfA8rZdBGPCG4Vs_rUs,227
|
|
29
|
-
_mcp_mesh/generated/.openapi-generator/FILES,sha256=NBc5b1cH-UHhAFXwqn1mzjAinoJEREtE2c9lu8PoVpo,2695
|
|
30
|
-
_mcp_mesh/generated/.openapi-generator/VERSION,sha256=nMm490YXJUW3_vAdeAsg7E3yRgUqVwk5-50PuaFonM8,7
|
|
31
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/__init__.py,sha256=fctLx4HJSdLdQpra0FgABUgsNzyJGF6Y8YPFkVyeL_w,6576
|
|
32
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/api_client.py,sha256=ollgygfyMeJMc6aeM10o4y9zHAaeEWdcedGVar9yISQ,28103
|
|
33
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
34
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/configuration.py,sha256=WMVUHnmfEHvwgYdKY2wtWLk7dlDWqg4fXKsFQWSUTrw,18543
|
|
35
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/exceptions.py,sha256=G78oVVlzThUyQiNZIvGMwCzI6ILbHtEvQ8Lw_VwF7Mk,6913
|
|
36
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
37
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/rest.py,sha256=NXdl_PkWt8DHzP37fT8Dmnem2fE91Kl2AKJ8Z_DeAkQ,9947
|
|
38
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/api/__init__.py,sha256=pHC3UrKRoxDhoH_lSVZSeb-bS90rngMUWgIv-lnCe68,295
|
|
39
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/api/agents_api.py,sha256=hAESmaDa2MrMxToYaTMsMmXU4azAVDofjeNuQwJPYsg,46430
|
|
40
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/api/health_api.py,sha256=avqNTQ4WUrRN1WPM24hAfOIq9rp1dtt1dVNxouCPSxg,30540
|
|
41
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/api/tracing_api.py,sha256=ZWkvIW4c6bTb5aY29ccQyh5-_diQtvD2Aiw-WnnybyY,13172
|
|
42
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/__init__.py,sha256=tSkX4e_qmZioRdYiZrqZGUvzE0p-7L01bQYLjnF-Vvk,4940
|
|
43
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/agent_info.py,sha256=AtA-t3e42t0yR9POJndDCGCu45FL4LNZn39qOHm9S9w,8065
|
|
44
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/agent_metadata.py,sha256=bfAdg4mUzCnAcudkQrCtLyuIQktW5at1K1i7gC-LQPc,6517
|
|
45
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/agent_metadata_dependencies_inner.py,sha256=kYio0rfLSA_uTgIkzcMUzLaZlHTIkDOkMnAhgr2fy6A,6300
|
|
46
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/agent_metadata_dependencies_inner_one_of.py,sha256=EM7QA5GPBN6v2rgiHdrBBfD4_55S7UN9A4N3zzkpKCs,3612
|
|
47
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/agent_registration.py,sha256=ZadE-sL6Gg1Oskv2pBOr7fWgmIhqpDHR-TrzCyoLa0k,4033
|
|
48
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/agent_registration_metadata.py,sha256=_ApSLY3oHtbzRCt4aCaGcXrdz5VixQNDt6w00qpPdiA,6106
|
|
49
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/agents_list_response.py,sha256=DDssoU0fCexA8bFMEsjaApitIUj39JLSZh73bQtPADY,3782
|
|
50
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/capability_info.py,sha256=yeZNWbgY-XVvRjrGVBNSkJNAdhFdXXleMNCMjhpNuXg,4681
|
|
51
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/decorator_agent_metadata.py,sha256=yFLvWLOs4FxW7EnRWuXrTCxBjot7JabwwjS12MOl0l0,4844
|
|
52
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/decorator_agent_request.py,sha256=Fl2T17ZHWMXYQiUE2gopRWgPnL1Y8jt_HKpyNh6Lu5c,4161
|
|
53
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/decorator_info.py,sha256=RJvQvVEezMObjh9bPPVi89DlKboBnBXmhLOkkmoPMt4,4542
|
|
54
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/dependency_info.py,sha256=plhOF_fAXXGLed6XVCgj8_YVzIm_gyaAF2kat_oah8Q,4118
|
|
55
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/dependency_resolution_info.py,sha256=D2Fb_a3z0pw9wxbPv0qUSDHpPcgR2gZdmbePFGYQO6o,4460
|
|
56
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/error_response.py,sha256=kvCblrJUWcCvmMJiWThz6GBqaRiWk4wefA691R8Z7mY,3241
|
|
57
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/health_response.py,sha256=iUgtqxhsJMVxtBFEdd0dg8JS69aTyg7Dng4dMOOilFI,3920
|
|
58
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/heartbeat_request.py,sha256=mMBDIGud4EDrPjat0PrgN8jac78-5ejcPq4OQPUHizE,3898
|
|
59
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/heartbeat_request_metadata.py,sha256=0yTF0w9-dYDyCUtkG2vqPGupnk3HR8ZWTfGYqgfInmk,4314
|
|
60
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/heartbeat_response.py,sha256=rVYdi4T2FAqyhRj5lCWhTE18am3Lu69n9HBZ2CqIqII,4904
|
|
61
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/llm_provider.py,sha256=Da4E1D7FexX6_GSBiZlgIJPurqYxjn7tT9oLOIWVNAY,3935
|
|
62
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/llm_provider_resolution_info.py,sha256=-S-5Nuzq4DfGEpXppDfv5m6mlGDHOJhxXROL4YGFlN4,4656
|
|
63
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/llm_tool_filter.py,sha256=VF0dnOr5BmXWCnrpyxhwml-vh3_mWTOecgeO5nF2u3o,4949
|
|
64
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/llm_tool_filter_filter_inner.py,sha256=EuhzAkeHKwxmMuNnx3WNkx1c8-IQSD7a4LlqNqF9Zxs,6144
|
|
65
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/llm_tool_filter_filter_inner_one_of.py,sha256=qE5cpvOpk93JN8NQMtOav92oR-mOOqa38IeciiKby_w,3472
|
|
66
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/llm_tool_info.py,sha256=dE2_bp7T7XPY7w1ub6kJzOcIskGbBM8q4DTRKkLbItk,4500
|
|
67
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/llm_tool_resolution_info.py,sha256=Dvv8_Vbb5PkcqQvOCNFvL5db7HdPnUiSUQvWfC4-wXI,5340
|
|
68
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/mesh_agent_register_metadata.py,sha256=GbjXWD8uLa6wHEJ-hjVRnS7A2BCxGGwIA2WXLOFA2KU,4817
|
|
69
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/mesh_agent_registration.py,sha256=IdVhdSeKekK97OJrqCYWEAIUhjDzpwwTgwx5fRKVl34,6249
|
|
70
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/mesh_registration_response.py,sha256=1fwBGewmZLCfg382E_TR8FUXvdzcnw2BhB8sc9r66QQ,7562
|
|
71
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/mesh_registration_response_dependencies_resolved_value_inner.py,sha256=k9TeDGld5NfHqI-oB12SVCuB-wZFMELIFyYicoBzfRs,4068
|
|
72
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/mesh_tool_dependency_registration.py,sha256=wgPngbNZSH6yIzHRZ2MENlj45DXNyaQ7DuCEHXx9WS0,3655
|
|
73
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/mesh_tool_register_metadata.py,sha256=6rkarwiK6wSfS-In_JmMHQNgXAM1AY-Ai1fDXMiVvJw,4932
|
|
74
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/mesh_tool_registration.py,sha256=kfPjf7__lhJeYpLNmzjleo2GFm_HTTNYIShoCQPjo_c,6074
|
|
75
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/registration_response.py,sha256=w_6AFTJksn5YRVE7bHMGeMZCCSI-ZN_k-YjMhJ_x9VY,5027
|
|
76
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/resolved_llm_provider.py,sha256=K4O0ogcyOIxJQ76fvbE400m-cU1vAtEJyebPcsi_az4,5193
|
|
77
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/rich_dependency.py,sha256=_TnwDuMn9JDIgdNFrIsejSFJySmkP8a5Lnyo1L4YMOo,3588
|
|
78
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/root_response.py,sha256=PrOUvjxdgri_v774ZBMoTOLucoBRD35GBC1GS-lkyuM,3218
|
|
79
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/standardized_dependency.py,sha256=uDaFhNtqSwc1oaid43wLrU0eGsUG6-8Mn462zc9juVg,3647
|
|
80
|
-
_mcp_mesh/generated/mcp_mesh_registry_client/models/trace_event.py,sha256=zceJuFnY-q2B43avqEc1GwkW1UcBpOAgRl__zcb-WDc,4458
|
|
81
|
-
_mcp_mesh/pipeline/__init__.py,sha256=9Aplh4m1z-rYTQys0JQLYlq9wTPdI72eSOhUPqcnvpA,1557
|
|
82
|
-
_mcp_mesh/pipeline/api_heartbeat/__init__.py,sha256=IXTLoQLAPqQEWZ8VMWc5W_cQJkDv95rlVGXyXoQDjHk,473
|
|
83
|
-
_mcp_mesh/pipeline/api_heartbeat/api_dependency_resolution.py,sha256=LDeLvN2U2MgYK3HLEUIhG5FUC2FyrGUs7SueF7gcfAA,20027
|
|
84
|
-
_mcp_mesh/pipeline/api_heartbeat/api_fast_heartbeat_check.py,sha256=vXiGTvBl5mwnVRwzFFNa7GvYWa7B-flCsHSX_ECv_JI,4822
|
|
85
|
-
_mcp_mesh/pipeline/api_heartbeat/api_health_check.py,sha256=kDmFeOG_4tyqyJSBZjPcc7xTzGpP4vq6ObW_WBqXvzM,5130
|
|
86
|
-
_mcp_mesh/pipeline/api_heartbeat/api_heartbeat_orchestrator.py,sha256=uBswzWOBzU8p_C0AE2DF8UwIWG4rP2zecHfPqKzNuC0,10367
|
|
87
|
-
_mcp_mesh/pipeline/api_heartbeat/api_heartbeat_pipeline.py,sha256=1bvQcO6lwZYTGILLAyWQuTOhyI5IY8mmhfSWAoJzMQU,13480
|
|
88
|
-
_mcp_mesh/pipeline/api_heartbeat/api_heartbeat_send.py,sha256=vszesutlAFXv9B4XXFutEMEBBhN54hF8eztTtDudLaI,15785
|
|
89
|
-
_mcp_mesh/pipeline/api_heartbeat/api_lifespan_integration.py,sha256=WBo2crcaGfxi8Q46TU-i5OMhAv0sQKz7Z9jps-GLkvM,5183
|
|
90
|
-
_mcp_mesh/pipeline/api_heartbeat/api_registry_connection.py,sha256=6N0JdXdnLkaXau4t8syt9DLgv9Y51SPfTXYK3DefBk8,3846
|
|
91
|
-
_mcp_mesh/pipeline/api_startup/__init__.py,sha256=eivolkSKot2bJTWP2BV8-RKRT1Zm7SGQYuEUiTxusOQ,577
|
|
92
|
-
_mcp_mesh/pipeline/api_startup/api_pipeline.py,sha256=w4m7LP7qnpLxYYWy4moa_8inAWFT0jWy9i7G9WGWOCM,2546
|
|
93
|
-
_mcp_mesh/pipeline/api_startup/api_server_setup.py,sha256=Qy0wbXyIWIQYA7CjiGVZwn0nWCKK85ZzFTRI2JDA9Aw,15099
|
|
94
|
-
_mcp_mesh/pipeline/api_startup/fastapi_discovery.py,sha256=MV3hvDXvX7r1Mrn6LAReu9W3hKt-5-jDhPpPYwZXnco,5770
|
|
95
|
-
_mcp_mesh/pipeline/api_startup/middleware_integration.py,sha256=ybImXZlmIR6yA-wYg5Zy_ZMFF9YgToLkk4jnBeZJ7WY,6267
|
|
96
|
-
_mcp_mesh/pipeline/api_startup/route_collection.py,sha256=UjA-F5_RbGVU5TfDT19Np5_x2PtYkNn2mGFyivDsk24,2031
|
|
97
|
-
_mcp_mesh/pipeline/api_startup/route_integration.py,sha256=qq1AVaWna-CWEXyehyDL3EyeYKgo5aMtei8uBNdvkZ8,12448
|
|
98
|
-
_mcp_mesh/pipeline/mcp_heartbeat/__init__.py,sha256=nRNjZ3VD_9bPLQuJ6Nc02gE7KSLcMP7TMquB0hP6hHs,844
|
|
99
|
-
_mcp_mesh/pipeline/mcp_heartbeat/dependency_resolution.py,sha256=3f6B5uUUGKj1o5Q5kVR817YpEVI9V173xcVRHAV3k4Q,18784
|
|
100
|
-
_mcp_mesh/pipeline/mcp_heartbeat/fast_heartbeat_check.py,sha256=XgU3Y5XPThXaPaEfxGZVCmwAgzTG8p0tba95EnMwWeE,4468
|
|
101
|
-
_mcp_mesh/pipeline/mcp_heartbeat/heartbeat_orchestrator.py,sha256=yMl_oE_Bim0F0W39V9pvvTCN_81KoqwSa5rfjJ1mPxo,12560
|
|
102
|
-
_mcp_mesh/pipeline/mcp_heartbeat/heartbeat_pipeline.py,sha256=I9kohm8lugJDEFT5kMLcLCt5DaRaK3q_wcvN-ed18Bw,11767
|
|
103
|
-
_mcp_mesh/pipeline/mcp_heartbeat/heartbeat_send.py,sha256=_97o_T0odK-oTH-0qQ_r7gUiy-hxj1HSEhCI7djbE3c,3602
|
|
104
|
-
_mcp_mesh/pipeline/mcp_heartbeat/lifespan_integration.py,sha256=4XPPlaJ6rz-FkDO3bxzVxHmVF-aq1CCaTW4vIBXrB0c,3016
|
|
105
|
-
_mcp_mesh/pipeline/mcp_heartbeat/llm_tools_resolution.py,sha256=dKYpr8ZKBHthkKxZKYI0WR6e2yEWVRsvf6cDj6XUjUc,10963
|
|
106
|
-
_mcp_mesh/pipeline/mcp_heartbeat/registry_connection.py,sha256=kL7k_yx2zafH3HO4sAxYCTxWdYWCoFsTOwCsRJVqUJk,2876
|
|
107
|
-
_mcp_mesh/pipeline/mcp_startup/__init__.py,sha256=gS0xNmVx66bkLUMw64olMsN40ZLPH3ymwlLixZ4NuTs,1239
|
|
108
|
-
_mcp_mesh/pipeline/mcp_startup/configuration.py,sha256=6LRLIxrqFMU76qrBb6GjGknUlKPZZ9iqOlxE7F9ZhLs,2808
|
|
109
|
-
_mcp_mesh/pipeline/mcp_startup/decorator_collection.py,sha256=RHC6MHtfP9aP0hZ-IJjISZu72e0Pml3LU0qr7dc284w,2294
|
|
110
|
-
_mcp_mesh/pipeline/mcp_startup/fastapiserver_setup.py,sha256=SYTMVRtR3qYoWaeIit88DnAyWhAxsG--ZatDtFvTkrc,33987
|
|
111
|
-
_mcp_mesh/pipeline/mcp_startup/fastmcpserver_discovery.py,sha256=Pm24wrSuRGsgeUrHvMPDnNh6RhIZoznnMAUwAkllohk,10661
|
|
112
|
-
_mcp_mesh/pipeline/mcp_startup/heartbeat_loop.py,sha256=v85B0ynomvYu87eIvLe-aSZ7-Iwov2VtM4Fg3PkmrZs,3865
|
|
113
|
-
_mcp_mesh/pipeline/mcp_startup/heartbeat_preparation.py,sha256=sOpzxRc0kYiXwSW9lvv8DSjliT85oZCWPODeJRuiqgg,15635
|
|
114
|
-
_mcp_mesh/pipeline/mcp_startup/lifespan_factory.py,sha256=Hu7IvrhVH9sM7-XQDyWAGA3rgOnNIRyWFBtobkUQ5Es,4404
|
|
115
|
-
_mcp_mesh/pipeline/mcp_startup/server_discovery.py,sha256=VuqqaBE00h6AerPjk-Ab-g51x6jODCbMX4nemLRQIIQ,8375
|
|
116
|
-
_mcp_mesh/pipeline/mcp_startup/startup_orchestrator.py,sha256=JuEP4JOCBNG1qhaS2KaT1cFhhAb_NTuF46saJapHjeY,25165
|
|
117
|
-
_mcp_mesh/pipeline/mcp_startup/startup_pipeline.py,sha256=cAAbqioYRswf-P25OpZFX2yL_qN2sl_bVk-kcynFxPw,2347
|
|
118
|
-
_mcp_mesh/pipeline/shared/__init__.py,sha256=s9xmdf6LkoetrVRGd7Zp3NUxcJCW6YZ_yNKzUBcnYys,352
|
|
119
|
-
_mcp_mesh/pipeline/shared/base_step.py,sha256=kyPbNUX79NyGrE_0Q-e-Aek7m1J0TW036njWfv0iZ0I,1080
|
|
120
|
-
_mcp_mesh/pipeline/shared/mesh_pipeline.py,sha256=UlQBrPWqbruFiUdVYgFKgPOpp_sMVsO97nZsWX90k9U,6498
|
|
121
|
-
_mcp_mesh/pipeline/shared/pipeline_types.py,sha256=iKSgzCoYu3bpIwLViw6lE7T7irEzOm7gpie29lyy7SQ,1504
|
|
122
|
-
_mcp_mesh/pipeline/shared/registry_connection.py,sha256=kB6gL1B7avmsPsOpEZVFh9143p0CAMeRIaLPBy86i-U,2905
|
|
123
|
-
_mcp_mesh/shared/__init__.py,sha256=L0detgEWjnc_XfxA_5vIBcaGTuLcT6AARKkUpUBIaH4,1116
|
|
124
|
-
_mcp_mesh/shared/config_resolver.py,sha256=r8WcO8lrd4XBHhH9IkAM7iy-QeCmTiVLmKhnJ47pFP0,7780
|
|
125
|
-
_mcp_mesh/shared/content_extractor.py,sha256=culjhieFl_J6EMDv1VFKvS38O3IMhWMs8fHhNuR2rVk,3656
|
|
126
|
-
_mcp_mesh/shared/defaults.py,sha256=5qazybkn7QHi418dXCS0b6QlNQl3DMg97ItzNGkc8d4,1851
|
|
127
|
-
_mcp_mesh/shared/fast_heartbeat_status.py,sha256=OquEsX9ZTbxY1lIsll0Mbb2KDzSJD76sLMOlr3Z73Sc,5188
|
|
128
|
-
_mcp_mesh/shared/fastapi_middleware_manager.py,sha256=_h10dSL9mgQstpJW_ZM2cpkU6yTKaYKlZaKXMk2i6IA,14638
|
|
129
|
-
_mcp_mesh/shared/health_check_manager.py,sha256=xZjQp-mWdPD64djp06nU5fN-fqi3Q_cIc1PAwMQTRBY,10362
|
|
130
|
-
_mcp_mesh/shared/host_resolver.py,sha256=ycs6gXnI1zJX5KiqiLJPX5GkHX8r4j8NMHQOlG2J2X8,2964
|
|
131
|
-
_mcp_mesh/shared/logging_config.py,sha256=hf3DCEMDN2WwEaETK721iQkFxX9TENNGmF9H1QhVSls,9076
|
|
132
|
-
_mcp_mesh/shared/registry_client_wrapper.py,sha256=WTHivh4Np740CvqN4d4wEYcimjPy1GCr1XXt-ZhEzO4,21181
|
|
133
|
-
_mcp_mesh/shared/server_discovery.py,sha256=W5nsN-GvEVFD-7XkbMTxh-9FUIEiyWOxP3GYr8GNi3E,13142
|
|
134
|
-
_mcp_mesh/shared/simple_shutdown.py,sha256=jnF1rTR2yR619LZnEjNlu-ZdKlB3PovxKqG0VZ3HDgE,8319
|
|
135
|
-
_mcp_mesh/shared/sse_parser.py,sha256=1NgnTMr4LQ-tW_cKJYj2oY0B5KDNskNeGlE23LcTOVk,8128
|
|
136
|
-
_mcp_mesh/shared/support_types.py,sha256=k-ICF_UwDkHxQ1D5LwFZrp-UrNb4E5dzw02CRuLW9iI,7264
|
|
137
|
-
_mcp_mesh/tracing/agent_context_helper.py,sha256=BIJ3Kc4Znd6emMAu97aUhSoxSIza3qYUmObLgc9ONiA,4765
|
|
138
|
-
_mcp_mesh/tracing/context.py,sha256=2ozqKEYfx4Qxj64DnbwoVIbMkhNLbaV8BNWtkzAPA7I,2516
|
|
139
|
-
_mcp_mesh/tracing/execution_tracer.py,sha256=nm1bXlomc8B_YYERO-LntwEDAcxJP3vbW8qpbVaXShg,10267
|
|
140
|
-
_mcp_mesh/tracing/fastapi_tracing_middleware.py,sha256=FXjhA1A1Krk-ngyuOZPc1Ic4Llggv4Wide9OuPmkwCY,6959
|
|
141
|
-
_mcp_mesh/tracing/redis_metadata_publisher.py,sha256=F78E34qnI3D0tOmbHUTBsLbDst2G7Su2-0F37Rq0rcM,4652
|
|
142
|
-
_mcp_mesh/tracing/trace_context_helper.py,sha256=3XWVU_cnsqrfjgAGRJaRK0Uvkns363scr4hVCGMzBgo,6858
|
|
143
|
-
_mcp_mesh/tracing/utils.py,sha256=t9lJuTH7CeuzAiiAaD0WxsJMFJPdzZFR0w6-vyR9f2E,3849
|
|
144
|
-
_mcp_mesh/utils/fastmcp_schema_extractor.py,sha256=M54ffesC-56zl_fNJHj9dZxElDQaWFf1MXdSLCuFStg,17253
|
|
145
|
-
mesh/__init__.py,sha256=Va5XRBWgejQurad7Maz3E-zPY7vu431B2_4sAdCu1zk,3868
|
|
146
|
-
mesh/decorators.py,sha256=sFTLngsIo_2uBb-Fvuh9K1S8e2Kzq_70eWT4Z2FA83E,59730
|
|
147
|
-
mesh/helpers.py,sha256=1Y7V6aQvpV8BKfEeeKfjwPJ5g9FjMCzSNifs3se1jkA,12935
|
|
148
|
-
mesh/types.py,sha256=n0MxrBYZJ84xyQWGf_X2ZbVWSAaIcEBkRV7qaCmX6Ac,17008
|
|
149
|
-
mcp_mesh-0.7.20.dist-info/METADATA,sha256=EgpC0PPEdFvse699KIX_B7A3JqWmXMOL6D6Dj6wHJ44,5006
|
|
150
|
-
mcp_mesh-0.7.20.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
151
|
-
mcp_mesh-0.7.20.dist-info/licenses/LICENSE,sha256=_EBQHRQThv9FPOLc5eFOUdeeRO0mYwChC7cx60dM1tM,1078
|
|
152
|
-
mcp_mesh-0.7.20.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|